level 2
15249902195
楼主
#include <stdio.h>
#include <stdlib.h>
int main()
{int c,f;
Scanf("%d",&f);
printf("c=%d\n",(f-32)/1.8);
system("pause");
return 0;
}
这有什么地方不对吗
2014年05月06日 11点05分
1
#include <stdlib.h>
int main()
{int c,f;
Scanf("%d",&f);
printf("c=%d\n",(f-32)/1.8);
system("pause");
return 0;
}
这有什么地方不对吗