题解列表

筛选

简易,易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int a,b,c;    for (int i=100; i<1……

最大公约数与最小公倍数

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

使用方法嵌套来解决此问题

摘要:解题思路:注意事项:参考代码:public static void main(String []args){    int num1,num2,num3;    int max;    Scanner……

年龄与疾病

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,n,a[n],b=0,c=0,d=0,e=0;    float f,g,h,j;    sc……

大象喝水题解,,,,

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

 编写题解 1003: [编程入门]密码破译

摘要:解题思路:译码规律是:用原来字母后面的第4个字母代替原来的字母.   注意事项:参考代码:#include <stdio.h>int main() {    // 初始化变量    char c1 =……