Fork me on GitHub

NYOJ之茵茵的第一课

 

-------------------------------------------

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

posted @ 2016-08-21 01:38  CC11001100  阅读(246)  评论(0编辑  收藏  举报