首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴编程小可乐的代码贴全部
#include<stdio.h>
//当fahr=0,20,...300时,分别打印华氏和摄氏温度对照表
void main()
{
int fahr,celsius;
int lower,upper,step;

lower=0; //温度表上限
upper=3000; //温度表下限
step=10; //步长

fahr=lower;
......................
阅读全部 | 2017年8月31日 11:18
1
编程小可乐