用java编写程序,输出以下的三角形。(图形后面有带题目的主要程序段,要求用上)
*********************************************'''inta,b,c;charstar='*';for(a=1;a<=9;a+...
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ** * * * * * * * * ''' int a,b,c;char star ='*';for (a=1;a<=9;a++){ for (b=0;b<=11-a;b++) System.out.print(" ");for (c=1;c<=a;c++){ System.out.print(" "+star);}System.out.println();}'''
展开
2个回答
2013-09-25
展开全部
可以自己控制输出的行数:import java.util.Scanner; //引入包 用来输入public class Test {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);//用来输入你想要输出几行
System.out.print("请输入你想输入的行数(整数):");
int num = scanner.nextInt();//此方法只能用来输入一个整数
for(int i=1; i<=num; i++) {
for(int a=num;a>i;a--) {
System.out.print(" ");//此for循环用来控制输出*前面的空格数
}
for(int j=1;j<=i;j++) {
System.out.print("*" + " ");
}
System.out.println();
} }
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);//用来输入你想要输出几行
System.out.print("请输入你想输入的行数(整数):");
int num = scanner.nextInt();//此方法只能用来输入一个整数
for(int i=1; i<=num; i++) {
for(int a=num;a>i;a--) {
System.out.print(" ");//此for循环用来控制输出*前面的空格数
}
for(int j=1;j<=i;j++) {
System.out.print("*" + " ");
}
System.out.println();
} }
}
2013-09-25
展开全部
--b,主要程序都给出了,几乎不用写了
public class Test {
public static void main(String[] args) {
int a, b, c;
char star = '*';
for (a = 1; a <= 9; a++) {
for (b = 0; b <= 11 - a; b++)
System.out.print(" ");
for (c = 1; c <= a; c++) {
System.out.print(" " + star);
}
System.out.println();
}
}
}
public class Test {
public static void main(String[] args) {
int a, b, c;
char star = '*';
for (a = 1; a <= 9; a++) {
for (b = 0; b <= 11 - a; b++)
System.out.print(" ");
for (c = 1; c <= a; c++) {
System.out.print(" " + star);
}
System.out.println();
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询