java笔试面试题有一个字符串aaaa 生成100个a

如题所述

第1个回答  2015-03-08
for(int x=0; x<100; x++){
System.out.print("a");
}本回答被网友采纳