javaacm输⼊输出
转⾃:
下⾯说⼀下ACM-ICPC队员初⽤Java编程所遇到的⼀些问题:
1. 基本输⼊输出:
(1)
JDK 1.5.0 新增的Scanner类为输⼊提供了良好的基础,简直就是为ACM-ICPC⽽设的。
⼀般⽤法为:
Code
import java.io.*
import java.util.*
public class Main
{
public static void main(String args[])
{
Scanner cin = new Scanner(new BufferedInputStream(System.in));
}
当然也可以直接 Scanner cin = new Scanner(System.in);
只是加Buffer可能会快⼀些
(2)
读⼀个整数: int n = Int(); 相当于 scanf("%d", &n); 或 cin >> n;
读⼀个字符串:String s = (); 相当于 scanf("%s", s); 或 cin >> s;
读⼀个浮点数:double t = Double(); 相当于 scanf("%lf", &t); 或 cin >> t;
读⼀整⾏: String s = Line(); 相当于 gets(s); 或 line(...);
判断是否有下⼀个输⼊可以⽤ cin.hasNext() 或 cin.hasNextInt() 或 cin.hasNextDouble() 等,具体见 TOJ 1001 例程。
(3)
输出⼀般可以直接⽤ System.out.print() 和 System.out.println(),前者不输出换⾏,⽽后者输出。
⽐如: Code
同⼀⾏输出多个整数可以⽤
Code
也可重新定义:
Code
static PrintWriter cout = new PrintWriter(new BufferedOutputStream(System.out));
(4)
对于输出浮点数保留⼏位⼩数的问题,可以使⽤DecimalFormat类,
Code
*;
DecimalFormat f = new DecimalFormat("#.00#");
DecimalFormat g = new DecimalFormat("0.000");
double a = 123.45678, b = 0.12;
System.out.println(f.format(a));
System.out.println(f.format(b));
这⾥0指⼀位数字,#指除0以外的数字。
2. ⼤数字
BigInteger 和 BigDecimal 是在java.math包中已有的类,前者表⽰整数,后者表⽰浮点数
⽤法:
不能直接⽤符号如+、-来使⽤⼤数字,例如:
Code
(import java.math.*) // 需要引⼊ java.math 包
BigInteger a = BigInteger.valueOf(100);
BigInteger b = BigInteger.valueOf(50);
BigInteger c = a.add(b) //
主要有以下⽅法可以使⽤:
Code
BigInteger add(BigInteger other)
BigInteger subtract(BigInteger other)
BigInteger multiply(BigInteger other)
BigInteger divide(BigInteger other)
BigInteger mod(BigInteger other)
int compareTo(BigInteger other)
static BigInteger valueOf(long x)
输出⼤数字时直接使⽤ System.out.println(a) 即可。
3. 字符串
java valueofString 类⽤来存储字符串,可以⽤charAt⽅法来取出其中某⼀字节,计数从0开始:Code
String a = "Hello"; //
⽤substring⽅法可得到⼦串,如上例
Code
System.out.println(a.substring(0, 4)) //
注意第2个参数位置上的字符不包括进来。这样做使得 s.substring(a, b) 总是有 b-a个字符。
字符串连接可以直接⽤ + 号,如
Code
String a = "Hello";
String b = "world";
System.out.println(a + ", " + b + "!"); //
如想直接将字符串中的某字节改变,可以使⽤另外的StringBuffer类。
4. 调⽤递归(或其他动态⽅法)
在主类中 main ⽅法必须是 public static void 的,在 main 中调⽤⾮static类时会有警告信息,可以先建⽴对象,然后通过对象调⽤⽅法:
Code
public class Main
{
void dfs(int a)
{
if ( ) return;
dfs(a+1);
}
public static void main(String args[])
{
Main e = new Main();
e.dfs(0);
}
}
5. 其他注意的事项
(1) Java 是⾯向对象的语⾔,思考⽅法需要变换⼀下,⾥⾯的函数统称为⽅法,不要搞错。
(2) Java ⾥的数组有些变动,多维数组的内部其实都是指针,所以Java不⽀持fill多维数组。
数组定义后必须初始化,如 int[] a = new int[100];
(3) 布尔类型为 boolean,只有true和false⼆值,在 if (...) / while (...) 等语句的条件中必须为boolean类型。
在C/C++中的 if (n % 2) ... 在Java中⽆法编译通过。
(4) 下⾯在java.util包⾥Arrays类的⼏个⽅法可替代C/C++⾥的memset、qsort/sort 和 bsearch:
Code
Arrays.fill()
Arrays.sort()
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论