题解列表

筛选

[编程入门]温度转换

摘要:解题思路:使用公式进行转换注意事项:注意scanf("%lf",&f);或者scanf("%f",&f);如果你前面定义的f是用double类型的话,就应该用%lf格式,如果f是float类型的话,就……

2749: Hello, World!

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){  cout <<"Hello, World!";    return ……

3008: 买笔题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    char c;    int result;    scanf("%d%d",&a……