1、编写一个程序,将两个Java程序文件显示到屏幕上.
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/10 16:18:05
1、编写一个程序,将两个Java程序文件显示到屏幕上.
import java.io.*;
public class SequenceInputStreamDemo{
public static void main(String args[]){
_______(1)___________fis1,fis2;
try{
fis1=new FileInprtStream(“prog1.java”);
fis2=new FileInprtStream(“prog2.java”);
_________(2)___________;
while((buf=________(3)_________)>0) System.out.print((char)buf);
________(4)_______;
fis2.close();
}________(5)_________{
System.out.println(e);
}
2.完成下列程序.
public class Name{
private String useName;
private String useS;
public _______(1)Name{
_______(2) useName =”whatever”; useS=”whatever”;}
public _______(3)Name (String s)
{int i=s._______(4)___________;//搜索空格
if(_______(5)___________){
useName=s.substring(0,i);
useS=s.substring(i+1);}}}
3、定义一个Demo执行类.要求可根据客户不同要求计算出矩形、圆的周长和面积.
4、编写程序,使界面中包含3个标签,其背景分别为红、黄、蓝3色
5、实现文件的复制,并输出.
import java.io.*;
public class SequenceInputStreamDemo{
public static void main(String args[]){
_______(1)___________fis1,fis2;
try{
fis1=new FileInprtStream(“prog1.java”);
fis2=new FileInprtStream(“prog2.java”);
_________(2)___________;
while((buf=________(3)_________)>0) System.out.print((char)buf);
________(4)_______;
fis2.close();
}________(5)_________{
System.out.println(e);
}
2.完成下列程序.
public class Name{
private String useName;
private String useS;
public _______(1)Name{
_______(2) useName =”whatever”; useS=”whatever”;}
public _______(3)Name (String s)
{int i=s._______(4)___________;//搜索空格
if(_______(5)___________){
useName=s.substring(0,i);
useS=s.substring(i+1);}}}
3、定义一个Demo执行类.要求可根据客户不同要求计算出矩形、圆的周长和面积.
4、编写程序,使界面中包含3个标签,其背景分别为红、黄、蓝3色
5、实现文件的复制,并输出.
1
(1) FileInputStream
(2) char buf;
(3) (char) fis1.read()
(4) while ((buf = (char) fis2.read()) > 0) System.out.print((char) buf);
fis1.close();
(5)catch (FileNotFoundException e)
你题目抄的有点问题 附上可执行源码
public class SequenceInputStreamDemo {
public static void main(String[] args) {
// _______(1)___________fis1,fis2;
FileInputStream fis1,fis2;
try {
fis1 = new FileInputStream("prog1.java");
fis2 = new FileInputStream("prog2.java");
// _________(2)___________;
char buf;
// while((buf=________(3)_________)>0) System.out.print((char)buf);
while ((buf = (char) fis1.read()) > 0) System.out.print((char) buf);
// ________(4)_______;
while ((buf = (char) fis2.read()) > 0) System.out.print((char) buf);
fis1.close();
fis2.close();
// }________(5)_________{
} catch (FileNotFoundException e) {
System.out.println(e);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
2
(1) 什么也不填
(2) super();
(3) 什么也不填
(4) .indexOf(" ");
(5)i > 0
可执行代码:
public class Name {
private String useName;
private String useS;
// public _______(1)Name{
public Name() {
// _______(2) useName =”whatever”; useS=”whatever”;}
super();
useName = "whatever";
useS = "whatever";
}
// public _______(3)Name (String s)
public Name(String s) {
// {int i=s._______(4)___________;//搜索空格
int i = s.indexOf(" ");
// if(_______(5)___________){
if (i > 0) {
useName = s.substring(0,i);
useS = s.substring(i + 1);
}
}
}
(1) FileInputStream
(2) char buf;
(3) (char) fis1.read()
(4) while ((buf = (char) fis2.read()) > 0) System.out.print((char) buf);
fis1.close();
(5)catch (FileNotFoundException e)
你题目抄的有点问题 附上可执行源码
public class SequenceInputStreamDemo {
public static void main(String[] args) {
// _______(1)___________fis1,fis2;
FileInputStream fis1,fis2;
try {
fis1 = new FileInputStream("prog1.java");
fis2 = new FileInputStream("prog2.java");
// _________(2)___________;
char buf;
// while((buf=________(3)_________)>0) System.out.print((char)buf);
while ((buf = (char) fis1.read()) > 0) System.out.print((char) buf);
// ________(4)_______;
while ((buf = (char) fis2.read()) > 0) System.out.print((char) buf);
fis1.close();
fis2.close();
// }________(5)_________{
} catch (FileNotFoundException e) {
System.out.println(e);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
2
(1) 什么也不填
(2) super();
(3) 什么也不填
(4) .indexOf(" ");
(5)i > 0
可执行代码:
public class Name {
private String useName;
private String useS;
// public _______(1)Name{
public Name() {
// _______(2) useName =”whatever”; useS=”whatever”;}
super();
useName = "whatever";
useS = "whatever";
}
// public _______(3)Name (String s)
public Name(String s) {
// {int i=s._______(4)___________;//搜索空格
int i = s.indexOf(" ");
// if(_______(5)___________){
if (i > 0) {
useName = s.substring(0,i);
useS = s.substring(i + 1);
}
}
}
1、编写一个程序,将两个Java程序文件显示到屏幕上.
用JAVA编写一个程序,求1000以内所有偶数的和以及奇数的和,并将偶数和以及奇数和输出到屏幕上.
编写一个C语言程序:用来实现在屏幕上显示一句话:Hello World!.
编写一个程序,完成一下功能:从键盘输入一行英文句子,输入到屏幕上,并将每个单词的
编写一个程序,在同一行上显示数字1到4,相邻的数字用一个空格分开.按照如下要求编写该程序:a) 使用一
编写程序,找出从3到1000间的所有素数,并在屏幕上显示出来.素数就是仅能被1和它自身整除的整数.
编写一个JAVA程序,求1!+2!+3!+.+10!的结果,并将结果输出
用java编写一个输出1到00以内的素数并求和的程序
用java循环编写一个程序题目.
编写一个简单的Java抛硬币程序,如果连续抛到3次正面程序就显示抛的总次数,可是我的程序里总次数有问题.
JAVA编写程序,在屏幕上输出200以内不能被3整除的数和(1+2+4+5+7+…+200)
怎么用java编写如下程序在屏幕上输出如下图形 * *** *** * 循环语句做(if语句)