遵循 C 编程书籍时,在第 17 行出现“预期表达式错误”。在这里完成菜鸟,不确定我做错了什么。
int main()
{
float fahr, celsius;
int lower, upper, step;
lower = 0; /* lower limit of temperature table */
upper = 300; /* upper limit */
step = 20; /*step size */
fahr = lower;
while (fahr <= upper ) {
celsius = (5.0/9.0) * (fahr - 32.0);
printf(“%3.0f %6.1f\n”, fahr, celsius);
fahr = fahr + step;
}
return 0;
}