אין תקציר עריכה
אין תקציר עריכה |
|||
int c, f;
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
int c, f;
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
return;
}
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
int c, f;
for (c = 0; c <= 40; c += 4)
{
f = celsius_to_fahrenheit(c);
int c;
for (c = 0; c <= 40; c += 4)
printf("%d in Celsius is %d in Fahrenheit\n", c, celsius_to_fahrenheit(c));
int c, f;
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
int c, f;
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
int c, f;
for (c = 0; c <= 40; c += 4)
printf("%d in Celsius is %d in Fahrenheit\n", c, (int)celsius_to_fahrenheit(c));
}
|