欢迎来到天天文库
浏览记录
ID:16680064
大小:61.00 KB
页数:8页
时间:2018-08-23
《java基本输入输出入门》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、Java基本输入输出入门一、Java基本开发环境1.JDK1.5以上编译运行环境2.Ecllipse3.2以上开发环境二、Java之输入输出处理由于ACM竞赛题目的输入数据和输出数据一般有多组(不定),并且格式多种多样,所以,如何处理题目的输入输出是对大家的一项最基本的要求。这也是困扰初学者的一大问题。1.输入:格式1:Scannersc=newScanner(newBufferedInputStream(System.in));格式2:Scannersc=newScanner(System.in);在读入数据量大的情况下,格式1的速度会快些。读一
2、个整数:intn=sc.nextInt();相当于scanf("%d",&n);或cin>>n;读一个字符串:Strings=sc.next();相当于scanf("%s",s);或cin>>s;读一个浮点数:doublet=sc.nextDouble();相当于scanf("%lf",&t);或cin>>t;读一整行:Strings=sc.nextLine();相当于gets(s);或cin.getline(...);判断是否有下一个输入可以用sc.hasNext()或sc.hasNextInt()或sc.hasNextDouble()或sc.h
3、asNextLine()例1:读入整数Input输入数据有多组,每组占一行,由一个整数组成。SampleInput5667100123importjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannersc=newScanner(System.in);while(sc.hasNext()){//判断是否结束intscore=sc.nextInt();//读入整数。。。。}}otherstaffoftheCentre.Duringthewar,Zhuwas
4、transferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,Sh
5、enmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand}例2:读入实数输入数据有多组,每组占2行,第一行为一个整数N,指示第二行包含N个实数。SampleInput456.967.790.512.8556.967.790.512.8importjava.util.Scanner;publicclassMain{publicstaticvoidmain(Str
6、ing[]args){Scannersc=newScanner(System.in);while(sc.hasNext()){intn=sc.nextInt();for(inti=0;i7、va.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannersc=newScanner(System.in);intn=sc.nextInt();for(inti=0;i8、rectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.St
7、va.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannersc=newScanner(System.in);intn=sc.nextInt();for(inti=0;i8、rectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.St
8、rectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.St
此文档下载收益归作者所有