GC的苦恼 (C语言代码) 摘要:解题思路:分段处理!注意事项:注意细节!参考代码:#include<stdio.h>int main(){int n;while((scanf("%d",&n))!=EOF){if(n>=90&&n<…… 题解列表 2019年05月19日 0 点赞 0 评论 323 浏览 评分:0.0
GC的苦恼(JAVA) 摘要:解题思路:注意事项:连续输入时使用while(sc.hasNext())参考代码:import java.util.Scanner; public class Main { public s…… 题解列表 2023年11月21日 0 点赞 0 评论 65 浏览 评分:0.0
GC的苦恼-题解(Python代码) 摘要:```python while True: n=eval(input()) if 0…… 题解列表 2020年04月20日 0 点赞 0 评论 412 浏览 评分: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 评论 601 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: n=int(input()) if 90<=n<=100: print('A') elif 75<…… 题解列表 2021年04月07日 0 点赞 0 评论 133 浏览 评分:0.0
分类讨论以及循环输入 摘要:解题思路:注意事项:参考代码:while True: a=int(input()) if a<=100 and a>=90: print('A') el…… 题解列表 2022年04月06日 0 点赞 0 评论 197 浏览 评分:0.0
GC的苦恼 (C语言代码)百思不得其解的正确率!!!很简单好吧!!! 摘要:解题思路:if语句划分区间注意事项:if语句的否定特性!!利用这个特性可以在定区间的时候简化代码!!!参考代码:#include<stdio.h>int main(){ int x; while(sc…… 题解列表 2019年04月19日 0 点赞 0 评论 401 浏览 评分:0.0
1388: GC的苦恼 摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) if 90<=num<=100: prin…… 题解列表 2021年12月24日 0 点赞 1 评论 83 浏览 评分:0.0
1388: GC的苦恼,c++代码实现 摘要:##1388: GC的苦恼 ***废话多说,直接上代码*** ```cpp #include using namespace std; int main(){ int a; whil…… 题解列表 2023年08月06日 0 点赞 0 评论 86 浏览 评分:0.0
GC的苦恼 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a[100],i,j=0; while(~scanf("%d",&a[j]))j++; …… 题解列表 2017年10月22日 0 点赞 0 评论 854 浏览 评分:0.0