java语言

计算机二级考试Java模拟试题及答案

时间:2022-12-06 21:18:59 java语言 我要投稿
  • 相关推荐

计算机二级考试Java模拟试题及答案2017

  不积跬步,何以至千里。试题的规律都是从一点一滴积累而来。下面是小编整理的计算机二级考试Java模拟试题及答案,欢迎练习!

计算机二级考试Java模拟试题及答案2017

  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);

  }

  }

【计算机二级考试Java模拟试题及答案】相关文章:

计算机二级C++模拟试题及答案02-06

计算机二级考试VF上机试题及答案03-21

年计算机二级Access考试题及答案03-21

计算机二级考试题库及答案08-03

二级造价工程师模拟试题及答案04-14

卫生资格考试模拟试题及答案11-01

初中数学毕业学业考试模拟试题及答案03-25

2022电工证考试模拟试题及答案09-21

2022年计算机二级office考试试题题库及答案11-29

2024年托福考试模拟试题及答案01-18