1 #include<stdio.h>
 2 int main()
 3 {
 4     int fahr;
 5     for (fahr = 0;  fahr<= 300; fahr=fahr+20)
 6     {
 7         printf("%3d %6.1f\n", fahr, (5.0 / 9.0)*(fahr - 32.0));
 8     }
 9     return 0;
10 }

1.3 for语句

 

相关文章:

  • 2022-12-23
  • 2021-11-07
  • 2021-09-05
  • 2021-06-15
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
猜你喜欢
  • 2021-09-14
  • 2021-05-10
  • 2021-05-22
  • 2022-01-31
  • 2022-01-15
相关资源
相似解决方案