用Java输出多行*组成一个十字形
3个回答
展开全部
int size=10;//十字的长度
int half=size/2;
for(int x=0;x<size;x++){
for(int y=0;y<size;y++)
if(x==half||y==half)
System.out.println("*");
else
System.out.println(" ");
}
System.out.println()
}
int half=size/2;
for(int x=0;x<size;x++){
for(int y=0;y<size;y++)
if(x==half||y==half)
System.out.println("*");
else
System.out.println(" ");
}
System.out.println()
}
更多追问追答
追问
编不出来啊。。
追答
public class Cross {
public static void main(String[] args) {
int size=11;//十字的长度
int half=size/2;
for(int x=0;x<size;x++){
for(int y=0;y<size;y++)
if(x==half||y==half)
System.out.print("*");
else
System.out.print(" ");
System.out.println();
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询