GC的苦恼-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2020年08月16日 0 点赞 0 评论 220 浏览 评分:0.0
GC的苦恼 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> #include<cmath> #include<alg…… 题解列表 2019年04月02日 0 点赞 0 评论 356 浏览 评分:0.0
分类讨论以及循环输入 摘要:解题思路:注意事项:参考代码:while True: a=int(input()) if a<=100 and a>=90: print('A') el…… 题解列表 2022年04月06日 0 点赞 0 评论 190 浏览 评分:0.0
GC的苦恼 (C语言代码) 摘要:解题思路:分段处理!注意事项:注意细节!参考代码:#include<stdio.h>int main(){int n;while((scanf("%d",&n))!=EOF){if(n>=90&&n<…… 题解列表 2019年05月19日 0 点赞 0 评论 314 浏览 评分:0.0
题解 1388: GC的苦恼 摘要:解题思路:也是使用字符数组来实现的,这里还用到了pow函数和strlen函数注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>i…… 题解列表 2021年10月15日 0 点赞 0 评论 176 浏览 评分:0.0
1388: GC的苦恼,c++代码实现 摘要:##1388: GC的苦恼 ***废话多说,直接上代码*** ```cpp #include using namespace std; int main(){ int a; whil…… 题解列表 2023年08月06日 0 点赞 0 评论 79 浏览 评分:0.0
GC的苦恼-题解(C语言代码) 摘要:#include #include #include #include //为了写程序方便,添加了许多库函数 int main() { int a,b,c; while(~scan…… 题解列表 2019年09月03日 0 点赞 0 评论 452 浏览 评分:0.0
GC的苦恼 (C语言代码) 摘要:#include "stdafx.h"void fun(int a){ if (a >= 90 && a <= 100) printf("A\n"); else if (a >= 75 && a <…… 题解列表 2018年10月26日 0 点赞 0 评论 599 浏览 评分:0.0
GC的苦恼-题解(Python代码) 摘要:```python while True: n=eval(input()) if 0…… 题解列表 2020年04月20日 0 点赞 0 评论 398 浏览 评分:0.0
GC的苦恼 (C语言代码)百思不得其解的正确率!!!很简单好吧!!! 摘要:解题思路:if语句划分区间注意事项:if语句的否定特性!!利用这个特性可以在定区间的时候简化代码!!!参考代码:#include<stdio.h>int main(){ int x; while(sc…… 题解列表 2019年04月19日 0 点赞 0 评论 394 浏览 评分:0.0