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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写Java应用程序,使程序在屏幕上打印输出以下字符图形相关的知识,希望对你有一定的参考价值。

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

参考技术A 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();


你把这个函数放进去后。参数自己加吧
参考技术B 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:

*
**
***
****
*****
******
*******
********
*********
**********本回答被提问者采纳
参考技术C 呵呵,刚才是你么?两*之间有空格
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());


参考技术D 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("");



第5个回答  2019-06-10 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:
*
**
***
****
*****
******
*******
********
*********
**********

JAVA基础-输入输出:1.编写TextRw.java的Java应用程序,程序完成的功能是:首先向TextRw.txt中写入自己的学号和姓名,读取TextRw.txt中信息并将其显示在屏幕上。(代码片

1.编写TextRw.java的Java应用程序,程序完成的功能是:首先向TextRw.txt中写入自己的学号和姓名,读取TextRw.txt中信息并将其显示在屏幕上。

 

package Test03;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class TextRw {

    public static void main(String[] args) {

         File file = new File("d:/TextRw.txt");
         
         try {
             FileOutputStream out = new FileOutputStream(file);
            
            String nr="学号:123456,姓名:张帅";                                    
            
            byte[] b=nr.getBytes();
            System.out.println("写入成功");
             
            out.write(b);
            out.close();        //关闭流 ,释放资源
             
          
            
            //输入流  从文件吧数据读入内存
            FileInputStream in = new FileInputStream(file);
          
            //装在数据的数组
            byte[] b1= new byte[1024];            
            int i=0;           
            String  str="";
            
            
            while((i = in.read(b1))>0)
            {
                //组合数据
                //参数 1 - 起始位置
                str += new String(b1,0,i);
                
            }

            System.out.println(str);

            
        } catch (Exception e) {
            // TODO 自动生成的 catch 块
            e.printStackTrace();
        }

    }

}

技术分享

 

以上是关于编写Java应用程序,使程序在屏幕上打印输出以下字符图形的主要内容,如果未能解决你的问题,请参考以下文章

Python中 设计一个程序,输出你的中文姓名和姓名中每个字的unicode编码。(要求

如何用JAVA编写程序使能够纵向输出古诗

用嵌套的for循环编写程序,要求通过这个嵌套的循环在屏幕上打印下列图案:

用JAVA编写一程序:从键盘输入多个字符串到程序中,并将它们按逆序输出在屏幕上。

用JAVA编写一程序:从键盘输入多个字符串到程序中,并将它们按逆序输出在屏幕上。

用JAVA怎么编写以下两个程序:?!