GC的苦恼-题解(Java代码) 摘要:import java.util.Scanner; public class Ex03 { public static void main(String[] args) { /…… 题解列表 2020年03月02日 0 点赞 0 评论 329 浏览 评分:0.0
GC的苦恼-题解(Python代码) 摘要:```python while True: n=eval(input()) if 0…… 题解列表 2020年04月20日 0 点赞 0 评论 413 浏览 评分:0.0
GC的苦恼-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2020年08月16日 0 点赞 0 评论 233 浏览 评分:0.0
GC的苦恼-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a; while(scanf("%d",&…… 题解列表 2020年08月30日 0 点赞 0 评论 387 浏览 评分:9.9
GC的苦恼-题解(C语言代码) 摘要:#include<stdio.h>int main(){ int a; while((scanf("%d",&a))!=EOF){ if(a>=90&&a<=100){ printf("A\n"…… 题解列表 2020年12月03日 0 点赞 0 评论 556 浏览 评分:9.9
简单python走起 摘要:解题思路:注意事项:参考代码:while True: n=int(input()) if 90<=n<=100: print('A') elif 75<…… 题解列表 2021年04月07日 0 点赞 0 评论 133 浏览 评分:0.0
题解 1388: GC的苦恼 摘要:解题思路:也是使用字符数组来实现的,这里还用到了pow函数和strlen函数注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>i…… 题解列表 2021年10月15日 0 点赞 0 评论 179 浏览 评分:0.0
1388: GC的苦恼 摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) if 90<=num<=100: prin…… 题解列表 2021年12月24日 0 点赞 1 评论 83 浏览 评分:0.0
GC的苦恼(Java代码) 摘要:参考代码:import java.util.Scanner; public class GC的苦恼 { public static void main(String[] args) { …… 题解列表 2022年01月07日 0 点赞 0 评论 205 浏览 评分:9.9
分类讨论以及循环输入 摘要:解题思路:注意事项:参考代码:while True: a=int(input()) if a<=100 and a>=90: print('A') el…… 题解列表 2022年04月06日 0 点赞 0 评论 197 浏览 评分:0.0