题解列表

筛选

模拟计算器

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

1053: 二级C语言-平均值计算

摘要:解题思路:使用数组及for循环注意事项:参考代码:#include<stdio.h>{int a[10];    int sum=0,score=0;    for(int i=0;i<10;i++)……

[编程入门]利润计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){ int a=100000; if(x<=a) { return 0.1*x; } else if(x<……

编写题解 1394: 永远的丰碑

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