- <p> public class PrintChar
- {
- public static void main(String[] args)
- { String str=args[0];
- int i,j;
- for(i=0;i<str.length();i++)
- /* args[0]取出输入字符串ABCD,然后得到字符串长
- 度,外循环的次数就是该字符串长度数
- */
- {
- System.out.print(str.charAt(i));
- /*charAt取出索引i对应的字符
- */
- for(j=0;j<i+1;j++)
- System.out.print("*");
- }
- }</p><p>}
- <img border="0" alt="" src="http://bbs.itheima.com/forum.php?mod=image&aid=25064&size=300x300&key=5273cb496fb2331d&nocache=yes&type=fixnone" aid="attachimg_25064"></p>
复制代码 |
|