标签:des style blog http color io os ar java
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 123 Accepted Submission(s): 90
1 import java.io.*; 2 import java.util.*; 3 import java.text.*; 4 public class BestCoder15 { 5 public static void main(String[] args){ 6 Scanner sc = new Scanner(new InputStreamReader(System.in)); 7 8 while(sc.hasNextLine()){ 9 String s1 = new String(sc.nextLine()); 10 String s2 = new String(sc.nextLine()); 11 12 String[] str1 = s1.split("_"); 13 String[] str2 = s2.split("_"); 14 15 System.out.println(str1[1] + "_small_" + str2[1]); 16 } 17 sc.close(); 18 } 19 }
标签:des style blog http color io os ar java
原文地址:http://www.cnblogs.com/ya-cpp/p/4052493.html