题解 | 字符串输出1.0
字符串输出1.0
https://www.nowcoder.com/practice/85ef91cfe5a6417ba0e9ba6908ef1868
import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
int n=3;
while (n-->0) { // 注意 while 处理多个 case
System.out.println("Welcome to ACM / ICPC!");
}
}
}
