题解列表

筛选

密码破译代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char ch1,ch2,ch3,ch4,ch5;    scanf("%c",&ch1);    sca……

温度转换代码

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

求平方和代码

摘要:解题思路:注意事项:参考代码:1.#include<stdio.h>int main(){    int A,B;    scanf("%d %d",&A,&B);    printf("%d",A*……

圆的面积代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    float r;    float pi =3.1415;    float s;    scanf("%……

三个数找最大值代码

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

分段函数求值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x,y;    scanf("%d",&x);    if (x<1) y=x;    else ……

数字处理代码

摘要:解题思路:给出一个不多于5位的整数,要求 1、求出它是几位数 2、分别输出每一位数字 3、按逆序输出各位数字,例如原数为321,应输出123注意事项:参考代码:#include<stdio.h>int……

[编程入门]字符串分类统计

摘要:解题思路:注意事项:参考代码:    #include <stdio.h>    #include <string.h>    /*    输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的……