GC的苦恼-题解(C语言代码) 摘要:#include #include #include #include //为了写程序方便,添加了许多库函数 int main() { int a,b,c; while(~scan…… 题解列表 2019年09月03日 0 点赞 0 评论 585 浏览 评分:0.0
分类讨论以及循环输入 摘要:解题思路:注意事项:参考代码:while True: a=int(input()) if a<=100 and a>=90: print('A') el…… 题解列表 2022年04月06日 0 点赞 0 评论 245 浏览 评分:0.0
1388: GC的苦恼 摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) if 90<=num<=100: prin…… 题解列表 2021年12月24日 0 点赞 1 评论 126 浏览 评分:0.0
题解 1388: GC的苦恼 摘要:解题思路:也是使用字符数组来实现的,这里还用到了pow函数和strlen函数注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>i…… 题解列表 2021年10月15日 0 点赞 0 评论 246 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: n=int(input()) if 90<=n<=100: print('A') elif 75<…… 题解列表 2021年04月07日 0 点赞 0 评论 321 浏览 评分:0.0
1388: GC的苦恼,c++代码实现 摘要:##1388: GC的苦恼 ***废话多说,直接上代码*** ```cpp #include using namespace std; int main(){ int a; whil…… 题解列表 2023年08月06日 0 点赞 0 评论 137 浏览 评分:0.0
GC的苦恼(JAVA) 摘要:解题思路:注意事项:连续输入时使用while(sc.hasNext())参考代码:import java.util.Scanner; public class Main { public s…… 题解列表 2023年11月21日 0 点赞 0 评论 103 浏览 评分:0.0
GC的苦恼-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2020年08月16日 0 点赞 0 评论 390 浏览 评分:0.0
GC的苦恼-题解(Python代码) 摘要:```python while True: n=eval(input()) if 0…… 题解列表 2020年04月20日 0 点赞 0 评论 558 浏览 评分:0.0
GC的苦恼-题解(Java代码) 摘要:import java.util.Scanner; public class Ex03 { public static void main(String[] args) { /…… 题解列表 2020年03月02日 0 点赞 0 评论 427 浏览 评分:0.0