1005注意头文件的引用以及取位格式kirito
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ float f,c; cin>>f……
在哪你都看得到我记住这句话
摘要:解题思路:秒了注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespace……
C++简单版,一看就会
摘要:解题思路:c++简单版本,一学就会(注意事项:第一个头文件可要可不要,本人习惯写上参考代码:#include <iostream>#include <stdio.h>using……
编写题解 1005: [编程入门]温度转换
摘要:解题思路:注意事项:参考代码:f = float(input())print('c=%.2f' % (5 * (f - 32) / 9))……
温度转换(C语言新手)
摘要:解题思路:注意事项:需注意5和(F-32)之间的乘号不可省略,要写*参考代码:#include <stdio.h>int main(){ float c,F; scanf("%f",&F); c=5*……
1005: [编程入门]温度转换
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float F,c; scanf("%f",&F); c=5*(F-32)/9; pri……
对于这个问题,直接用最简单的方法
摘要:参考代码:#include<stdio.h>int main(){ double F; double c=0; scanf("%lf",&F); c=5*(F-32)/9; printf("c=%0.……