Java上机程序复习题.doc

上传人:11****ws 文档编号:3261841 上传时间:2019-05-27 格式:DOC 页数:27 大小:134.50KB
下载 相关 举报
Java上机程序复习题.doc_第1页
第1页 / 共27页
Java上机程序复习题.doc_第2页
第2页 / 共27页
Java上机程序复习题.doc_第3页
第3页 / 共27页
Java上机程序复习题.doc_第4页
第4页 / 共27页
Java上机程序复习题.doc_第5页
第5页 / 共27页
点击查看更多>>
资源描述

1、Java 的基本数据类型:int 整数类型long 长整数类型float 单精度浮点数类型double 双精度浮点数类型char 字符类型打印语句:System.out.print(s);System.out.print(“s=”+s);System.out.println(a);System.out.println(“a=”+a);条件语句:格式 1:if(条件关系式)语句块 1;格式 2:if(条件关系式)语句块 1;else语句块 2;关系运算符:等于=不等于!=逻辑运算符:非 !与 循环变量= 终止值; 循环变量=循环变量-步长值)循环体语句;for(循环变量=初始值;循环变量=0)i

2、mport java.io.*;public class a5public static void main(String args)throws IOExceptionInputStreamReader read1=new InputStreamReader(System.in);BufferedReader input1=new BufferedReader(read1);String s1;double x,y;System.out.print(“请输入 x:“);s1=input1.readLine();x=Double.parseDouble(s1);if (x2)y=x*1.5*0

3、.8;elsey=x*1.5;System.out.println(“y=“+y);7 如果一个数能被 7 整除,则输出这个数,否则输出“此数不能整除 7”import java.io.*;public class a7public static void main(String args)throws IOExceptionInputStreamReader read1=new InputStreamReader(System.in);BufferedReader input1=new BufferedReader(read1);String s1;double x;System.out.p

4、rint(“请输入 x:“);s1=input1.readLine();x=Double.parseDouble(s1);if (x%7=0)System.out.println(“x=“+x);elseSystem.out.println(“此数不能整除 7“);8 火车行李托运费,行李重量在 50kg 以下,每千克按 0.10 元计,如 50kg,超出部分每千克按 0.20元计。import java.io.*;public class a8public static void main(String args)throws IOExceptionInputStreamReader rea

5、d1=new InputStreamReader(System.in);BufferedReader input1=new BufferedReader(read1);String s1;double x,y;System.out.print(“请输入 x:“);s1=input1.readLine();x=Double.parseDouble(s1);if (x0)System.out.println(“x 为正数“);elseSystem.out.println(“x 为 0“);11输入三个整数,输出其中最大数。import java.io.*;public class a11publi

6、c static void main(String args)throws IOExceptionInputStreamReader read1=new InputStreamReader(System.in);BufferedReader input1=new BufferedReader(read1);String s1;double a,b,c;System.out.print(“请输入 a:“);s1=input1.readLine();a=Double.parseDouble(s1);System.out.print(“请输入 b:“);s1=input1.readLine();b=

7、Double.parseDouble(s1);System.out.print(“请输入 c:“);s1=input1.readLine();c=Double.parseDouble(s1);if (ab)if (ac)System.out.println(“最大数是“+a);elseSystem.out.println(“最大数是“+c);elseif (bc)System.out.println(“最大数是“+b);elseSystem.out.println(“最大数是“+c);12求解二次方程 Ax2+Bx+C=0 的根,系数 A,B ,C 由键盘输入import java.io.*;

8、public class a12public static void main(String args)throws IOExceptionInputStreamReader read1=new InputStreamReader(System.in);BufferedReader input1=new BufferedReader(read1);String s1;double a,b,c,d,x1,x2;System.out.print(“请输入 a:“);s1=input1.readLine();a=Double.parseDouble(s1);System.out.print(“请输入

9、 b:“);s1=input1.readLine();b=Double.parseDouble(s1);System.out.print(“请输入 c:“);s1=input1.readLine();c=Double.parseDouble(s1);d=b*b-4*a*c;if (d0)System.out.println(“无解“);elseif (d=0)x1=(-b+Math.sqrt(d)/(2*a);System.out.println(“x=“+x1);elsex1=(-b+Math.sqrt(d)/(2*a);x2=(-b-Math.sqrt(d)/(2*a);System.ou

10、t.println(“x1=“+x1);System.out.println(“x2=“+x2);13显示所有 100 内的偶数;public class a13public static void main(String args)int x;for (x=2;x=100;x=x+2)System.out.println(x);14显示所有 100 内的奇数;15显示所有 200-300 间的偶数;16显示所有 100 内有能被 7 整除的数public class a16public static void main(String args)int x;for (x=1;x=100;x=x+1)if (x%7=0)System.out.println(x);17显示所有既能被 3 整除又能被 7 整除的两位正整数,数值之间用“:”隔开。public class a17public static void main(String args)int x;for (x=10;x=99;x=x+1)if (x%7=0&x%3=0)

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 重点行业资料库 > 医药卫生

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。