标签:
-------------------------------------------
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
标签:
原文地址:http://www.cnblogs.com/cc11001100/p/5791740.html