解题思路:
注意事项:
参考代码:
package cWeb.buleCup; import java.util.Scanner; public class C1094 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner in = new Scanner(System.in); int N = in.nextInt(); in.nextLine(); String [] strs = new String [N]; for (int i = 0; i < strs.length; i++) { strs[i] = in.nextLine(); } for (int i = 0; i < strs.length; i++) { System.out.println(strs[i]+"\n"); } while(in.hasNext()) { String str = in.nextLine(); int beginIndex = 0; int endIndex; for (int i = 0; i < str.length(); i++) { if(str.charAt(i)==' ') { endIndex = i; System.out.println(str.substring(beginIndex, endIndex)+"\n"); beginIndex = i+1; } if(i==str.length()-1) { System.out.println(str.substring(beginIndex, str.length())+"\n"); } } } } }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:1000 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:539 |
printf基础练习2 (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:616 |
C语言训练-亲密数 (C语言代码)浏览:697 |
1011题解浏览:819 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:727 |
矩阵乘方 (C语言代码)浏览:1079 |
C语言训练-亲密数 (C语言描述,反正怎么都能对)浏览:2256 |
多输入输出练习2 (C语言代码)浏览:1710 |