[宿題] by abe 2007/04/06 以下の文字列を表示するプログラムを作りなさい。 "We ran the algorithm 100 times." ただし、必ず変数を2つ以上使用すること。 [解答例] class Abe1{ public static void main( String args[] ) { String a = "\"We ran the algorithm "; int b = 100; String c = " times.\""; System.out.println( a + b + c ); } }