题解 1388: GC的苦恼

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

筛选

java GC的苦恼 GC的苦恼

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main {     public static void main(String[……

GC的苦恼(JAVA)

摘要:解题思路:注意事项:连续输入时使用while(sc.hasNext())参考代码:import java.util.Scanner; public class Main { public s……

1388: GC的苦恼,c++代码实现

摘要:##1388: GC的苦恼 ***废话多说,直接上代码*** ```cpp #include using namespace std; int main(){ int a; whil……

编写题解 1388: GC的苦恼

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

分类讨论以及循环输入

摘要:解题思路:注意事项:参考代码:while True:    a=int(input())    if a<=100 and a>=90:        print(&#39;A&#39;)    el……

GC的苦恼(Java代码)

摘要:参考代码:import java.util.Scanner; public class GC的苦恼 { public static void main(String[] args) { ……

1388: GC的苦恼

摘要:解题思路:注意事项:参考代码:while True:    try:        num = int(input())        if 90<=num<=100:            prin……

题解 1388: GC的苦恼

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

简单python走起

摘要:解题思路:注意事项:参考代码:while True:    n=int(input())    if 90<=n<=100:        print(&#39;A&#39;)    elif 75<……