You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
702 B
18 lines
702 B
#include <stdio.h>
|
|
/* печать таблицы температур по Фаренгейту и Цельсию для
|
|
celsius = 0, 20 ... 300; вариант с плавающей точкой */
|
|
int main()
|
|
{
|
|
float fahr, celsius;
|
|
int lower, upper, step;
|
|
lower = 0; /* нижняя граница таблицы температур */
|
|
upper = 300; /* верхняя граница */
|
|
step = 10; /* шаг */
|
|
celsius = lower;
|
|
printf ("Таблица перевода цельс. в фар.\n");
|
|
while (celsius <= upper) {
|
|
fahr = (9.0/5.0) * celsius + 32.0;
|
|
printf ("%3.0f %6.2f\n", celsius, fahr);
|
|
celsius = celsius + step;
|
|
}
|
|
} |