本帖最后由 Maple_枫 于 2014-4-5 11:39 编辑
- package yeah.net;
- public class day03 {
- public static void mian(String[] args){
- for(int i=0;i<5;i++){
- for(int y=i;y<5;y++){
- System.out.print("-");
- }
- for(int x=0;x<=i;x++){
- System.out.print("* ");
- }
- System.out.println();
- }
- }
- }
复制代码 |
|