2017年9月计算机二级考试JAVA考试题及答案
2017年下半年计算机二级考试正在备考中。你知道计算机二级考试JAVA科目都考哪些知识吗?为了方便考生备考计算机二级考试JAVA 科目。下面是小编为大家带来的计算机二级考试JAVA考试题,欢迎阅读。
考试题一:
1、编写程序,计算下列分段函数的值。
x? (x>=0)
y=
-x? (x<0)
import java.io.*;
public class testa
{ public static void main(String[] args) throws IOException
{
float? x,y;
InputStreamReader reader=new InputStreamReader(System.in);
BufferedReader input=new BufferedReader(reader);
System.out.println("请输入x:");
String temp=input.readLine();
x = Float.parseFloat(temp);
if(x>=0)
{
y=x;
}else
{
y=-x;
}
System.out.println("y="+y);
}
}
2、根据年龄,判断某人是否为成年。
import java.io.*;
public class testa
{
public static void main(String[] args) throws IOException
{
int x;
InputStreamReader reader=new InputStreamReader(System.in);
BufferedReader input=new BufferedReader(reader);
System.out.println("请输入x:");
String temp=input.readLine();
x = Float.parseFloat(temp);
if(x>=18)
{
System.out.println("成年人");
}
if(x<18)
{
System.out.println("未成年");
}
}
}
3、判断2020的奇偶性,并进行输出。
public class test
{
public static void main(String[] args)
{
int x;
x=2020;
if(x%2==0)
System.out.println(+x+"是偶数");
else
System.out.println(+x+"不是偶数");
}
}
4、比较两个数的大小,找出其中的最大数并输出。
import java.io.*;
public class ka
{ public static void main(String[] args) throws IOException
{
float? x,y,m;
m=0;
InputStreamReader readerx=new InputStreamReader(System.in);
BufferedReader inputx=new BufferedReader(readerx);
System.out.println("请输入x:");
String tempx=inputx.readLine();
x = Float.parseFloat(tempx);
InputStreamReader readery=new InputStreamReader(System.in);
BufferedReader inputy=new BufferedReader(readery);
System.out.println("请输入y:");
String tempy=inputy.readLine();
y= Float.parseFloat(tempy);
if(x>y)
{
m=x;
}else
{
m=y;
}
System.out.println("最大数为"+m);
}
}
5、比较两个数的大小,找出其中的最小数并输出。
import java.io.*;
public class ka
{ public static void main(String[] args) throws IOException
{
float? x,y,m;
m=0;
InputStreamReader readerx=new InputStreamReader(System.in);
BufferedReader inputx=new BufferedReader(readerx);
System.out.println("请输入x:");
String tempx=inputx.readLine();
x = Float.parseFloat(tempx);
InputStreamReader readery=new InputStreamReader(System.in);
BufferedReader inputy=new BufferedReader(readery);
System.out.println("请输入y:");
String tempy=inputy.readLine();
y= Float.parseFloat(tempy);
if(x{
m=x;
}else
{
m=y;
}
System.out.println("最小数为"+m);
}
}
6、编写一个Java程序,判断某年份是否为闰年。
import java.io.*;
public class testa
{
public static void main(String[] args) throws IOException
{
float? x;
InputStreamReader reader=new InputStreamReader(System.in);
BufferedReader input=new BufferedReader(reader);
System.out.println("请输入x:");
String temp=input.readLine();
x =Float.parseFloat(temp);
if(x@0==0)
{
System.out.println(+x+"是闰年");
}
else
if(x%4==0)
{
System.out.println(+x+"是闰年");
}
else{ System.out.println(+x+"不是闰年");}
}
}
7、比较两个数的大小,找出其中的'最大数和最小数并输出。
import java.io.*;
public class ka
{ public static void main(String[] args) throws IOException
{
float? x,y;
InputStreamReader readerx=new InputStreamReader(System.in);
BufferedReader inputx=new BufferedReader(readerx);
System.out.println("请输入x:");
String tempx=inputx.readLine();
x = Float.parseFloat(tempx);
InputStreamReader readery=new InputStreamReader(System.in);
BufferedReader inputy=new BufferedReader(readery);
System.out.println("请输入y:");
String tempy=inputy.readLine();
y= Float.parseFloat(tempy);
if(x{
System.out.println("最小数为"+x);
System.out.println("最大数为"+y);
}else
{
System.out.println("最小数为"+y);
System.out.println("最大数为"+x);
}
}
}
8、比较两个数的大小,找出其中的最大数和最小数,并输出最大数和最小数之差。
import java.io.*;
public class ka
{ public static void main(String[] args) throws IOException
{
float? x,y,m;
InputStreamReader readerx=new InputStreamReader(System.in);
BufferedReader inputx=new BufferedReader(readerx);
System.out.println("请输入x:");
String tempx=inputx.readLine();
x = Float.parseFloat(tempx);
InputStreamReader readery=new InputStreamReader(System.in);
BufferedReader inputy=new BufferedReader(readery);
System.out.println("请输入y:");
String tempy=inputy.readLine();
y= Float.parseFloat(tempy);
if(x{
System.out.println("最小数为"+x);
System.out.println("最大数为"+y);
m=y-x;
System.out.println("最大数与最小数之差为"+m);
}else
{
System.out.println("最小数为"+y);
System.out.println("最大数为"+x);
m=x-y;
System.out.println("最大数与最小数之差为"+m);
}
}
}
9、编写程序,计算下列分段函数的值。
x? (x>0)
y=???? 0? (x=0)
-x? (x<0)
import java.io.*;
public class testa
{
public static void main(String[] args) throws IOException
{
float? x,y;
y=0;
InputStreamReader reader=new InputStreamReader(System.in);
BufferedReader input=new BufferedReader(reader);
System.out.println("请输入x:");
String temp=input.readLine();
x = Float.parseFloat(temp);
if(x>0)
{
y=x;
}
if(x==0)
{
y=0;
}
if(x<0)
{
y=-x;
}
System.out.println("y="+y);
}
}
10、编写程序,计算下列分段函数的值。
x-1? (x>1)
y=???? 0? (-1≤x≤1)
x+10? (x<-1)
import java.io.*;
public class testa
{
public static void main(String[] args) throws IOException
{
float? x,y;
y=0;
InputStreamReader reader=new InputStreamReader(System.in);
BufferedReader input=new BufferedReader(reader);
System.out.println("请输入x:");
String temp=input.readLine();
x = Float.parseFloat(temp);
if(x>1)
{
y=x-1;
}
if(1.0>=x&&x>=-1.0)
{
y=0;
}
if(x<-1)
{
y=x+10;
}
System.out.println("y="+y);
}
}
考试题二:
1、 编写程序,实现1到100之间整数的累加并输出运算结果。
public class a
{
public static void main(String[] args)
{
int i,s=0;
for(i=1;i<=100;i++)
{
s=s+i;
}
System.out.println("1到100的累加和是"+s);
}}
2、编写程序,计算1~100中奇数的累加和并输出。
public class a
{
public static void main(String[] args)
{
int i,s=0;
for(i=1;i<=100;i++)
{
if(i%2!=0)
s=s+i;
}
System.out.println("1到100的奇数累加和是"+s);
}}
3、编写程序,计算1~100中偶数的累加和并输出。
public class a
{
public static void main(String[] args)
{
int i,s=0;
for(i=1;i<=100;i++)
{
if(i%2==0)
s=s+i;
}
System.out.println("1到100的偶数累加和是"+s);
}}
4、编写程序,计算10的阶乘并输出运算结果。
public class a
{
public static void main(String[] args)
{
int i,s=1;
for(i=1;i<=10;i++)
{
s=s*i;
}
System.out.println("10的阶乘是"+s);
}}
5、编写程序,计算1、2、3...的累加和,条件是和小于50。
public class a
{
public static void main(String[] args)
{
int i=1,s=0;
label:
while(true)
{? s=s+i;
i++;
if(s>50)
{ s=s+1-i;
break;}}
System.out.println("从1开始的累加和小于50的累加和是"+s);
}}
6、编写程序,计算偶数2、4、6...的累加和,条件是和小于50。
public class a
{
public static void main(String[] args)
{
int i=1,s=0;
label:
while(true)
{? s=s+2*i;
i++;
if(s>50)
{ s=s-2*i+2*1;
break;}}
System.out.println("从2开始的偶数累加和小于50的累加和是"+s);
}}
7、编写程序,输出下列图案:
*
***
*****
*******
public class a
{???????? public static void main(String[] args)
{ int i,k;
for(i=1;i<=4;i++)
{
for(k=1;k<=2*i-1;k++)
System.out.print("*");
System.out.println();
}
}
}
8、编写程序,输出下列图案:
*
***
*****
*******
public class a
{???????? public static void main(String[] args)
{ int i,j,k;
for(i=1;i<=4;i++)
{
for(j=1;j<=8-2*i;j++)
System.out.print(" ");
for(k=1;k<=2*i-1;k++)
System.out.print("*");
System.out.println();
}
}
}
9、编写程序,输出下列图案:
*******
*****
***
*
public class a
{???????? public static void main(String[] args)
{ int i,j,k;
for(i=1;i<=4;i++)
{
for(j=1;j<=2*i-2;j++)
System.out.print(" ");
for(k=1;k<=9-2*i;k++)
System.out.print("*");
System.out.println();
}
}
}
10、编写程序在终端打印1~100之间的素数。
public class a
{???????? public static void main(String[] args)
{ int i,j;
label:
for(i=2;i<=100;i++)
{????? for(j=2;jif(i%j==0)
continue label;
System.out.print(+i);
System.out.println();
}
}
}
11、编写一个java程序,用穷举法找出2~50之间的素数,并打印出来。
public class s{
public static void main(String args[]){
int i,j,k ;
boolean flag ;
for (i=2;i<=50 ;i++ ){
flag =true ;
k=i/2 ;
for (j=2;j<=k ;j++ ){
if (i%j==0){
flag = false ;
break ;
}
}
if (flag){
System.out.println(i+"") ;
}
}
}
}
12、编写一自定义方法,找出两个数中的最大数,并main方法中验证。
public class a
{
static double Max(double x,double y)
{?? double t;
if(x>=y)
{
t=x;
}else
{ t=y;???? }
return t;
}
public static void main(String[] args)
{
double x,y,m;
x=549.265;
y=56.28;
m =Max(x,y);
System.out.println("最大数是"+m);
System.out.println("x="+x+"y="+y);
if(m>=x&&y<=m)
{
System.out.println("ture");
}
else
{
System.out.println("flase");
}
}
}
13、编写一自定义方法,找出两个数中的最小数,并main方法中验证。
public class a
{
static double Min(double x,double y)
{?? double t;
if(x<=y)
{
t=x;
}else
{ t=y;???? }
return t;
}
public static void main(String[] args)
{
double x,y,m;
x=245.38;
y=525.63;
m =Min(x,y);
System.out.println("最小数是"+m);
System.out.println("x="+x+"y="+y);
if(m<=x&&y>=m)
{
System.out.println("ture");
}
else
{
System.out.println("flase");
}
}
}
14、编程,找出长度为10的数组中,数组元素的最大值,并输出。
public class a
{
public static void main(String[] args)
{
double x[]={25.3,56.3,15.3,125.25,465.36,456.32,458.21,456.325,4856.3215,41.6};
double m= x[0];
int i;
for(i=0;i<10;i++)
{ if (m<=x[i])
m=x[i];
}
System.out.println("最大数是"+m); }}
15、编程,找出长度为10的数组中,数组元素的最小值,并输出。
public class a
{
public static void main(String[] args)
{
double x[]={25.3,56.3,15.3,125.25,465.36,456.32,458.21,456.325,4856.3215,41.6};
double m=x[0];
int i;
for(i=0;i<10;i++)
{ if (m>=x[i])
m=x[i];
}
System.out.println("最小数是"+m); }}
16、编程,找出长度为10的数组中,数组元素的最大值和最小值,并输出。
public class a
{
public static void main(String[] args)
{
double x[]={25.3,56.3,15.3,125.25,465.36,456.32,458.21,456.325,4856.3215,41.6};
【2017年9月计算机二级考试JAVA考试题及答案】相关文章:
计算机二级Java备考试题附答案09-29
计算机二级考试Java试题及答案10-05
计算机二级Java考试巩固试题及答案11-01
计算机二级JAVA考试试题及答案10-12
计算机二级JAVA考试摸底试题及答案10-08
2017年9月计算机二级考试VB考试题09-28
计算机二级考试VB考试题及答案08-29