题解列表

筛选

最简单易懂的解法{1019}

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    double M,N,h=0,H=0;    scanf("%lf%lf",&M,&N);    for……

2865: 紧急措施(结构体+函数解法)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>// 函数arr用于将字符串中的大写字母转换为小写字母,小写字母转……

1005: [编程入门]温度转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    float F,c;    scanf("%f",&F);    c=5*(F-32)/9;    pri……

使用数组和for循环来便捷解题

摘要:注意本题需要使用到课程第五章的循环和第六章的数组,如果是有基础的同学就可以直接看了参考代码:#include<stdio.h>#include<string.h>int main(){    int ……

直接写就得了

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