java语句中怎么用while和循环结构生成如下图形
展开全部
public class Ideone
{
public static void main (String[] args) {
int con=0;
while(con<6){
int conti=0;
while(conti<con){
System.out.print("*");
conti++;
}
System.out.println();
con++;
}
}
}
{
public static void main (String[] args) {
int con=0;
while(con<6){
int conti=0;
while(conti<con){
System.out.print("*");
conti++;
}
System.out.println();
con++;
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
7.
int a=0;
while (a++ < 5) {
int b = 0;
while (b++ < a)
System.out.print('*');
System.out.println();
}
8.
for (int a = 0; a < 5; a++) {
for (int b = 0; b < 5-a; b++)
System.out.print(' ');
for (int b = 0; b < a; b++)
System.out.print('*');
System.out.println();
}
int a=0;
while (a++ < 5) {
int b = 0;
while (b++ < a)
System.out.print('*');
System.out.println();
}
8.
for (int a = 0; a < 5; a++) {
for (int b = 0; b < 5-a; b++)
System.out.print(' ');
for (int b = 0; b < a; b++)
System.out.print('*');
System.out.println();
}
追问
第八题不是靠右的,是等边三角形,七题对了,谢谢你
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询