-------------------------------------------
AC代码:
1 import java.util.Scanner; 2 3 public class Main { 4 5 public static void main(String[] args) { 6 7 Scanner sc=new Scanner(System.in); 8 9 int times=Integer.parseInt(sc.nextLine()); 10 11 while(times-->0) System.out.println(sc.nextLine()); 12 13 } 14 15 }
题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=259
时间: 2024-10-13 17:09:57