Java上机考试之基本操作题
/*年终工作总结ppt结束语大全
1、下列程序中,给出两个整数2和3,分别求2除以3和2乘以3的结果,要求调用类ex1_1的方法method( )来输出相应的结果,请将程序补充完整。程序运行结果如下:
0.6666666666666666
6
*/
public class ex1_1
{
public static void main(String[] args)
{
int n1 = 2, n2 = 3 ;
ex1_1 obj1_1 = new ex1_1();
obj1_1._______________________;
}
public void method(int x, int y)
{
System.out.println(_______________________);
System.out.println(_______________________);
}
}
/*
4、下列程序中,要求从键盘接受字符输入,直到输入字符为"e"(注意是小写)时停止,并且将输入的字符("e"之前的字符)显示在屏幕上。请将程序补充完整。程序运行结果如下:
Keep typing, it will stop while enter 'e'...
ddfsofkjlvncozieowdsfadsf
ddfsofkjlvncozi
*/
import java.io.*;
php工程师什么意思public class ex4_1
{
public static void main(String[] args)
{
char ch;
System.out.println("Keep typing,it will stop while enter 'e'...");
try
{
while ((ch = _______________________) != 'e')
{
System. _______________________;
}
}
catch(IOException ioe)
{
System.out.Message());
}
}
/*
5、下列程序中,要求建立一个包含一个方法的类,这个方法实现数组的拷贝,要求首先用直接初始化原始数组,然后将原始数组中的数据拷贝到目的数组,并分别输出原始数组和目的数组。要求数组类型为String类型,大小为4,采用动态分配的方式对数组进行初始化。请将程序补充完整。
程序运行结果如下:
原始的:
小龙
小张
小李
小陈
复制后的:
小龙
小张
小李
*/
public class ex5_1
{
public static void main(String[] args)
{
ex5_1 obj5_1 = new ex5_1();
obj5_1. _______________________;
}
public void method5_1()
{
int i = 0;
String strMember[] = new String[4];
String strTemp[] = new String[4];
strMember[0] = "小龙";
strMember[1] = "小张";
strMember[2] = "小李";
strMember[3] = "小陈";
for (i = 0; i < 4; i++)
{
_______________________;
}
System.out.println("原始的:");
for (i = 0; i < 4; i++)
{
System.out.println(_______________________);
}
System.out.println("复制后的:");
for (i = 0; i < 4; i++)
System.out.println(strTemp[i]);
}
}
}
/*
7、下列程序中,实现将封装数据类型Integer和基本数据类型int之间的转换,以及Integer, int类型和String类型之间的转换。程序运行结果如下:
123
456
456
*/
public class ex7_1
{
public static void main(String[] args)
{
Integer intobj;
int n;
String s;
intobj = new Integer(123);
n = intobj.intValue();
System.out.String(n));
s = new String("456");
intobj = Integer.valueOf(s);
System.out.String());
n = Integer.parseInt(s);
System.out.String(n));
}
}
/*
11、下面是一个Applet小程序,其功能为:以坐标(10,20)为起点,画一条长为80
个象素点的绿直线,请在横线处填写一条语句,使程序完整.
*/
/*
<applet code = "ex11_1.class" width = 400 height = 200>
</applet>
儿童网页设计素材
*/
_______________________;
import java.awt.*;
public class ex11_1 extends Applet
{
public void paint(_______________________)
{
g.);
_______________________
}
}
/
*
17、10位同学参加某次团队测试,要求每位同学都必须及格、同时平均分不少于80分整个团队才能够通过。每位同学的成绩可以通过随机数产生(0-100)。请在程序的横线处填写一条语句,使程序完整.
*/
_______________________;
public class ex17_1
{
public static void main(String args[])
{
int fenshu = 60;
int sumfenshu = 0;
int i = 1;
while ((fenshu >= 60) && (i <= 10))
{
fenshu = (int)( _______________________);
System.out.println(fenshu + " ");
sumfenshu += fenshu;
i++;
}
System.out.println();
if (_______________________)
{
System.out.println("团队通过");
}
else
{
System.out.println("团队测试不通过");
}
}
}
/*
20、请在每条横线处填写一条语句,使程序的功能为:判断输入的年份是否是闰年.
*/
import java.io.*;
public class ex20_1
{
public static void main(String args[]) throws IOException
{
InputStreamReader ir;
BufferedReader in;
ir = new InputStreamReader(_______________________);
in = new BufferedReader(ir);
System.out.println("输入的年份是:");
String s = in.readLine();
int year = _______________________
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
{
System.out.println(" " + year + "年是闰年.");
}
else
wishes英文读音{
System.out.println(" " + year + "年不是闰年.");
}
}
}
/*
22、下面程序是打印输出100-300之间的不能被3整除的数。请在程序的横线处填写一条语句, 使程序完整。
*/
public class ex22_1
{
void print()
{
地图边框素材int n;
for (n = 100; n <= 300; n++)
{
if (n % 3 == 0)
{
_______________________
java经典上机编程题}
System.out.print(n + "  ");
}
}
public static _____________ main(String args[])
{
ex22_1 obj = new ex22_1();
_______________________
}
}
/
*
23、下面程序是关于类的继承的用法.阅读下面程序中的注释在每条横线处填写一个语句,
使程序的功能完整.且运行结果为:
I am parentclass!
I am childclass!
I am childclass!
*/
class Parent
{
void printMe()

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。