题解列表

筛选

甲流疫情死亡率

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

1003c语言代码

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

1005c语言代码

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

1006c语言代码

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

1007c语言代码

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

1008c语言代码

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

1009c语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,t,k,i=0,j,a[5]; scanf("%d",&n); while(n!=0){ t=n……

有规律的数列求和

摘要:解题思路:引入t来实现值的交换,和求三个数最大值解法有些相似注意事项:参考代码:#include <stdio.h> #include <math.h>  int main()  {   do……

1010c语言代码

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