Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
23
Добавлен:
02.05.2014
Размер:
317 б
Скачать
// stdafx.cpp : source file that includes just the standard includes
// MOLab1.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"

double abs(double x)
{
	return x > 0 ? x : -x;
}

double sign(double x)
{
	return x < 0 ? -1.0 : 1.0;
}
Соседние файлы в папке MOLab2