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.
17 lines
347 B
17 lines
347 B
8 months ago
|
#include <stdio.h>
|
||
|
|
||
|
float temp(int fahr);
|
||
|
|
||
|
/* печать таблицы температур по Фаренгейту и Цельсию */
|
||
|
int main()
|
||
|
{
|
||
|
int fahr;
|
||
|
for (fahr = 300; fahr >= 0; fahr = fahr - 20)
|
||
|
printf("%3d %6.1f\n", fahr, temp(fahr));
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
float temp(int fahr)
|
||
|
{
|
||
|
return (5.0 / 9.0) * (fahr - 32);
|
||
|
}
|