题解列表

筛选

1998 永远都是C语言 good

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

1987 C语言yyds good

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x;char c1,c2,c3,c4; c1=&#39;A&#39;,c2=&#39;B&#39;,……

1985 永远都是C语言

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

1980 永远都是C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y,y3; scanf("%d",&x); if(x>15) {y=(x-15)*3+30; p……

字符串分类统计基础解法

摘要:解题思路:先输入字符串,然后统计英文字母、数字、空格、剩下的就是其他字符了。注意事项:注意字符要用单引号。要用与字符串有关的#include<stdio.h>.字符串最后有&#39;\0&#39;,判……

1955 成员C语言666分

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