欢迎来到天天文库
浏览记录
ID:37851854
大小:339.00 KB
页数:30页
时间:2019-06-01
《java中南大学livelab习题》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、1.5importjava.util.*;publicclassExercise01_01{publicstaticvoidmain(String[]args){System.out.println(9.5*4.5-2.5*3/(45.5-3.5));}}1.11(人口预测)基于以下假设美国人口普查局的项目群:每7秒一诞生一人死亡每13秒一个新移民每45秒编写一个程序,以显示人口为每个未来五年。假设目前的人口为312032486和一年有365天。1.3P2numberExchange将两个变量(a=10,
2、b=20)的值交换,但要求不能使用额外的变量,只能通过简单的运算实现!请在控制台上以‘a=?b=?’的格式输出经过交互后的变量值。写程序读取0~1000范围之间的整数,并把读取的整数的各个位段上的数字相加Enteranumberbetween0and1000:999Thesumofthedigitsis27importjava.util.*;publicclassExercise02_06{publicstaticvoidmain(String[]args){Scannersc=newScanner(Sy
3、stem.in);System.out.println("?????0-1000????");intn;n=sc.nextInt();inta,b,c;intm;a=n%10;b=(n/10)%10;c=n/100;m=a+b+c;System.out.println(m);}}根据用户输入的时区信息,输出给定时区的当前时间EnterthetimezoneoffsettoGMT:−5Thecurrenttimeis4:50:34importjava.util.Date;importjava.util.Ti
4、meZone;importjava.text.SimpleDateFormat;publicclassExercise02_08{publicstaticvoidmain(String[]args){30SimpleDateFormatformat=newSimpleDateFormat("yyyy-MM-ddhh:mm:ss");Datedate=newDate();TimeZonezone=TimeZone.getTimeZone("GMT-5");format.setTimeZone(zone);S
5、ystem.out.println(format.format(date));}}给定两点坐标,计算两点的欧式距离Enterx1andy1:1.5-3.4Enterx2andy2:45Thedistancebetweenthetwopointsis8.764131445842194importjava.util.Scanner;publicclassExercise02_15{publicstaticvoidmain(String[]args){Scannerin=newScanner(System.in
6、);System.out.println("??x1,y1:");doublex1=in.nextDouble();doubley1=in.nextDouble();System.out.println("??x2,y2:");doublex2=in.nextDouble();doubley2=in.nextDouble();doubledistance=Math.sqrt(Math.abs((x1-x2)*(x1-x2))+Math.abs((y1-y2)*(y1-y2)));System.out.pr
7、intln("?????:"+distance);}}(Business:checkISBN-10国际标准书号)AnISBN-10(InternationalStandardBookNumber)consistsof10digits:d1d2d3d4d5d6d7d8d9d10.Thelastdigit,d10,isachecksum,whichiscalculatedfromtheotherninedigitsusingthefollowingformula:(d1*1+d2*2+d3*3+d4*4+d5
8、*5+d6*6+d7*7+d8*8+d9*9)%11Ifthechecksumis10,thelastdigitisdenotedasXaccordingtotheISBN-10convention.Writeaprogramthatpromptstheusertoenterthefirst9digitsanddisplaysthe10-digitISBN(includingleadingzeros).Yourprograms
此文档下载收益归作者所有