题解 1388: GC的苦恼

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 1388: GC的苦恼

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

题解 1388: GC的苦恼

摘要:解题思路:也是使用字符数组来实现的,这里还用到了pow函数和strlen函数注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>i……

GC的苦恼-题解(C语言代码)

摘要:#include #include #include #include //为了写程序方便,添加了许多库函数 int main() { int a,b,c; while(~scan……

GC的苦恼 (C语言代码)

摘要:解题思路:分段处理!注意事项:注意细节!参考代码:#include<stdio.h>int main(){int n;while((scanf("%d",&n))!=EOF){if(n>=90&&n<……

GC的苦恼 (C语言代码)

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