import java.io.*; public class R4ensyu4d { /** * @param args the command line arguments */ public static void main(String[] args) throws Exception { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); System.out.println("文字列を一文字づつ減らして三角形にする"); while(true){ System.out.println("String> "); String str = in.readLine(); if(str.equals("")){ break;} //RETのみでwhileから抜け出す。 String res = ""; //文字列resは空文字列 for (int l = str.length() - 1;l >= 0;--l){ System.out.println(str.substring(0,l)); } } } }