考试首页 | 考试用书 | 培训课程 | 模拟考场 | 考试论坛  
全国  |             |          |          |          |          |         
  当前位置:计算机等级 > 二级考试 > Java语言程序设计 > 模拟试题 > 文章内容
  

全国计算机等级考试二级Java模拟试题及答案(30)

中华IT学院   【 】  [ 2016年11月22日 ]

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

首页 1 2 尾页
分享到:
本文纠错】【告诉好友】【打印此文】【返回顶部
将考试网添加到收藏夹 | 每次上网自动访问考试网 | 复制本页地址,传给QQ/MSN上的好友 | 申请链接 | 意见留言 TOP
关于本站  网站声明  广告服务  联系方式  站内导航  考试论坛
Copyright © 2007-2013 中华考试网(Examw.com) All Rights Reserved