编写Java应用程序,使程序在屏幕上打印输出以下字符图形

编写Java应用程序,使程序在屏幕上打印输出以下字符图形:***************... 编写Java应用程序,使程序在屏幕上打印输出以下字符图形:
*
* *
* * *
* * * *
* * * * *
展开
 我来答
lqqnjust
2010-01-16 · TA获得超过415个赞
知道小有建树答主
回答量:627
采纳率:0%
帮助的人:472万
展开全部
public print(int n,int m)
{
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
System.out.print("*");
System.out.println();
}
}
你把这个函数放进去后。参数自己加吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
liweipengbd
推荐于2016-01-05 · TA获得超过1819个赞
知道小有建树答主
回答量:376
采纳率:0%
帮助的人:447万
展开全部
public class Test {
public static void main(String[] args) {
int level = 10;
for(int i = 1; i <= level; i++) {
for(int j = 1; j <= i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}

result:

*
**
***
****
*****
******
*******
********
*********
**********
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
方杭尽
2010-01-16 · TA获得超过1万个赞
知道大有可为答主
回答量:1296
采纳率:0%
帮助的人:635万
展开全部
呵呵,刚才是你么?两*之间有空格
public class three {
public static void main(String[] args) {
for (int i = 0; i < 5; i++) {
String temp="";
for (int j = 0; j <= i; j++) {
temp+="* ";
}
System.out.println(temp.trim());
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sunny_guang
2010-01-18 · TA获得超过312个赞
知道答主
回答量:221
采纳率:0%
帮助的人:127万
展开全部
public class Tree{
public static void main(String[] args){
for(int i=0;i<5;i++){
for(int j=0;j<=i;j++){
System.out.print("* ");
}
System.out.println("");
}

}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
戚范弓秋灵
2019-06-10 · TA获得超过3791个赞
知道小有建树答主
回答量:3104
采纳率:34%
帮助的人:422万
展开全部
public
class
Test
{
public
static
void
main(String[]
args)
{
int
level
=
10;
for(int
i
=
1;
i
<=
level;
i++)
{
for(int
j
=
1;
j
<=
i;
j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
result:
*
**
***
****
*****
******
*******
********
*********
**********
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式