编写Java应用程序,使程序在屏幕上打印输出以下字符图形
编写Java应用程序,使程序在屏幕上打印输出以下字符图形:***************...
编写Java应用程序,使程序在屏幕上打印输出以下字符图形:
*
* *
* * *
* * * *
* * * * * 展开
*
* *
* * *
* * * *
* * * * * 展开
展开全部
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();
}
}
你把这个函数放进去后。参数自己加吧
{
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
System.out.print("*");
System.out.println();
}
}
你把这个函数放进去后。参数自己加吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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:
*
**
***
****
*****
******
*******
********
*********
**********
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:
*
**
***
****
*****
******
*******
********
*********
**********
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
呵呵,刚才是你么?两*之间有空格
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());
}
}
}
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());
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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("");
}
}
}
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("");
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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:
*
**
***
****
*****
******
*******
********
*********
**********
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:
*
**
***
****
*****
******
*******
********
*********
**********
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询