
12.11.2009, 14:10
|
|
Reservists Of Antichat - Level 6
Регистрация: 05.03.2007
Сообщений: 1,985
Провел на форуме: 3288241
Репутация:
3349
|
|
Код:
#include "stdio.h"
#include "conio.h"
#include "math.h"
int main(int argc, char* argv[])
{
for (int x = 2; x < 11; x++)
{
printf("%f\n", sqrt((float)x));
}
getch();
return 0;
}
Последний раз редактировалось slesh; 12.11.2009 в 14:14..
|
|
|