标签:style blog http color for ar 2014 div
要求:输入一个1-10的整数,打印出一个如下图的平行四边形
public static void main(String[] args) { System.out.println("请输入需要打印的平行四边形行数:"); Scanner sc=new Scanner(System.in); int hang=sc.nextInt(); if(hang<0||hang>10){ System.out.println("输入的行数无效!"); return; } for(int j=0;j<hang;j++){ for (int a=0;a<hang-j;a++){ System.out.print(" "); } for(int i=0;i<10;i++){ System.out.print("@"); } System.out.println(); } }
标签:style blog http color for ar 2014 div
原文地址:http://www.cnblogs.com/twolegsdonkey/p/3916867.html