【经验总结】Java在ACM算法竞赛编程中易错点

简介: 一、Java之ACM易错点   1. 类名称必须采用public class Main方式命名   2. 在有些OJ系统上,即便是输出的末尾多了一个“ ”,程序可能会输出错误,所以在我看来好多OJ系统做的是非常之垃圾   3.

一、Java之ACM易错点

 

1. 类名称必须采用public class Main方式命名

 

2. 在有些OJ系统上,即便是输出的末尾多了一个“ ”,程序可能会输出错误,所以在我看来好多OJ系统做的是非常之垃圾

 

3. 有些OJ上的题目会直接将OI上的题目拷贝过来,所以即便是题目中有输入和输出文件,可能也不需要,因为在OJ系统中一般是采用标准输入输出,不需要文件

 

4. 在有多行数据输入的情况下,一般这样处理:

1 static Scanner in = new Scanner(System.in);  
2 while(in.hasNextInt())  
3 或者是  
4 while(in.hasNext())  

 

5. 有关System.nanoTime()函数的使用,该函数用来返回最准确的可用系统计时器的当前值,以毫微秒为单位。

 

  1. long startTime = System.nanoTime();  
  2. // ... the code being measured ...  
  3. long estimatedTime = System.nanoTime() - startTime; 

 

 

二、Java之输入输出处理

 

由于ACM竞赛题目的输入数据和输出数据一般有多组(不定),并且格式多种多样,所以,如何处理题目的输入输出是对大家的一项最基本的要求。这也是困扰初学者的一大问题。

 

1. 输入:

 

格式1Scanner sc = new Scanner (new BufferedInputStream(System.in));

 

格式2Scanner sc = new Scanner (System.in);

 

在读入数据量大的情况下,格式1的速度会快些。

 

读一个整数: int n = sc.nextInt()相当于 scanf("%d", &n); 或 cin >> n; 

 

读一个字符串:String s = sc.next(); 相当于 scanf("%s", s); 或 cin >> s; 

 

读一个浮点数:double t = sc.nextDouble(); 相当于 scanf("%lf", &t); 或 cin >> t; 

 

读一整行: String s = sc.nextLine(); 相当于 gets(s); 或 cin.getline(...); 

 

判断是否有下一个输入可以用sc.hasNext()sc.hasNextInt()sc.hasNextDouble()sc.hasNextLine()

 

1:读入整数

 

  1. Input  输入数据有多组,每组占一行,由一个整数组成。   
  2. Sample Input   
  3. 56  
  4. 67  
  5. 100  
  6. 123   
  7.    
  8. import java.util.Scanner;  
  9. public class Main {  
  10. public static void main(String[] args) {  
  11. Scanner sc =new Scanner(System.in);  
  12. while(sc.hasNext()){  //判断是否结束  
  13. int score = sc.nextInt();//读入整数  
  14. 。。。。  
  15. }  
  16. }  
  17. }  
  18.    



 

 

2:读入实数

输入数据有多组,每组占2行,第一行为一个整数N,指示第二行包含N个实数。

 

  1. Sample Input  
  2. 4   
  3. 56.9  67.7  90.5  12.8   
  4. 5   
  5. 56.9  67.7  90.5  12.8   
  6.    
  7. import java.util.Scanner;  
  8. public class Main {  
  9. public static void main(String[] args) {  
  10. Scanner sc =new Scanner(System.in);  
  11. while(sc.hasNext()){  
  12. int n = sc.nextInt();  
  13. for(int i=0;i<n;i++){  
  14. double a = sc.nextDouble();  
  15. 。。。。。。  
  16. }  
  17. }  
  18. }  
  19. }  
  20.    



 

3:读入字符串【杭电2017 字符串统计

 

输入数据有多行,第一行是一个整数n,表示测试实例的个数,后面跟着n行,每行包括一个由字母和数字组成的字符串。

 

  1. Sample Input    
  2. 2  
  3. asdfasdf123123asdfasdf  
  4. asdf111111111asdfasdfasdf  
  5.    
  6. import java.util.Scanner;  
  7. public class Main {  
  8. public static void main(String[] args) {  
  9. Scanner sc = new Scanner(System.in);  
  10. int n = sc.nextInt();  
  11. for(int i=0;i<n;i++){  
  12. String str = sc.next();  
  13. ......  
  14. }  
  15. }  
  16. }  
  17. import java.util.Scanner;  
  18. public class Main {  
  19. public static void main(String[] args) {  
  20. Scanner sc = new Scanner(System.in);  
  21. int n = Integer.parseInt(sc.nextLine());  
  22. for(int i=0;i<n;i++){  
  23. String str = sc.nextLine();  
  24. ......  
  25. }  
  26. }  
  27. }  
  28.    



 

 

3:读入字符串【杭电2005 第几天?

  1. 给定一个日期,输出这个日期是该年的第几天。   
  2. Input  输入数据有多组,每组占一行,数据格式为YYYY/MM/DD组成  
  3. 1985/1/20  
  4. 2006/3/12  
  5. import java.util.Scanner;  
  6. public class Main {  
  7. public static void main(String[] args) {  
  8. Scanner sc = new Scanner(System.in);  
  9. int[] dd = {0,31,28,31,30,31,30,31,31,30,31,30,31};  
  10. while(sc.hasNext()){  
  11. int days = 0;  
  12. String str = sc.nextLine();  
  13. String[] date = str.split("/");  
  14. int y = Integer.parseInt(date[0]);  
  15. int m = Integer.parseInt(date[1]);  
  16. int d = Integer.parseInt(date[2]);  
  17. if((y%400 == 0 || (y%4 == 0 && y%100 !=0)) && m>2) days ++;  
  18. days += d;  
  19. for(int i=0;i<m;i++){  
  20. days += dd[i];  
  21. }  
  22. System.out.println(days);  
  23. }  
  24. }  
  25. }  



 

 

 

 

2. 输出  

 

函数:

 

System.out.print(); 

 

System.out.println(); 

 

System.out.format();

 

System.out.printf();  

 

 

 

杭电1170Balloon Comes!

 

Give you an operator (+,-,*, / --denoting addition, subtraction, multiplication, division respectively) and two positive integers, your task is to output the result. 

 

Input

 

Input contains multiple test cases. The first line of the input is a single integer T (0<T<1000) which is the number of test cases. T test cases follow. Each test case contains a char C (+,-,*, /) and two integers A and B(0<A,B<10000).Of course, we all know that A and B are operands and C is an operator. 

 

Output

 

For each case, print the operation result. The result should be rounded to 2 decimal places If and only if it is not an integer.

 

Sample Input

 

4

 

+ 1 2

 

- 1 2

 

* 1 2

 

/ 1 2

 

Sample Output

 

3

 

-1

 

2

 

0.50

  1. import java.util.Scanner;  
  2. public class Main {  
  3. public static void main(String[] args) {  
  4. Scanner sc =new Scanner(System.in);  
  5. int n = sc.nextInt();  
  6. for(int i=0;i<n;i++){  
  7. String op = sc.next();  
  8. int a = sc.nextInt();  
  9. int b = sc.nextInt();  
  10. if(op.charAt(0)=='+'){  
  11. System.out.println(a+b);  
  12. }else if(op.charAt(0)=='-'){  
  13. System.out.println(a-b);  
  14. }else if(op.charAt(0)=='*'){  
  15. System.out.println(a*b);  
  16. }else if(op.charAt(0)=='/'){  
  17. if(a % b == 0) System.out.println(a / b);  
  18. else System.out.format("%.2f", (a / (1.0*b))). Println();  
  19. }  
  20. }  
  21. }  
  22. }  

 


 

3. 规格化的输出:
函数:

// 这里0指一位数字,#指除0以外的数字(如果是0,则不显示),四舍五入.
    DecimalFormat fd = new DecimalFormat("#.00#");
    DecimalFormat gd = new DecimalFormat("0.000");
    System.out.println("x =" + fd.format(x));
    System.out.println("x =" + gd.format(x));

  1. public static void main(String[] args) {  
  2.     NumberFormat   formatter   =   new   DecimalFormat( "000000");   
  3.         String  s  =   formatter.format(-1234.567);     //   -001235   
  4.         System.out.println(s);  
  5.         formatter   =   new   DecimalFormat( "##");   
  6.         s   =   formatter.format(-1234.567);             //   -1235   
  7.         System.out.println(s);  
  8.         s   =   formatter.format(0);                      //   0   
  9.         System.out.println(s);  
  10.         formatter   =   new   DecimalFormat( "##00");   
  11.         s   =   formatter.format(0);                     //   00   
  12.         System.out.println(s);  
  13.    
  14.         formatter   =   new   DecimalFormat( ".00");   
  15.         s   =   formatter.format(-.567);               //   -.57   
  16.         System.out.println(s);  
  17.         formatter   =   new   DecimalFormat( "0.00");   
  18.         s   =   formatter.format(-.567);              //   -0.57   
  19.         System.out.println(s);  
  20.         formatter   =   new   DecimalFormat( "#.#");   
  21.         s   =   formatter.format(-1234.567);         //   -1234.6   
  22.         System.out.println(s);  
  23.         formatter   =   new   DecimalFormat( "#.######");   
  24.         s   =   formatter.format(-1234.567);        //   -1234.567   
  25.         System.out.println(s);  
  26.         formatter   =   new   DecimalFormat( ".######");   
  27.         s   =   formatter.format(-1234.567);       //   -1234.567   
  28.         System.out.println(s);  
  29.         formatter   =   new   DecimalFormat( "#.000000");   
  30.         s   =   formatter.format(-1234.567);      //   -1234.567000   
  31.         System.out.println(s);  
  32.           
  33.         formatter   =   new   DecimalFormat( "#,###,###");   
  34.         s   =   formatter.format(-1234.567);      //   -1,235   
  35.         System.out.println(s);  
  36.         s   =   formatter.format(-1234567.890);  //   -1,234,568   
  37.         System.out.println(s);  
  38.    
  39.         //   The   ;   symbol   is   used   to   specify   an   alternate   pattern   for   negative   values   
  40.         formatter   =   new   DecimalFormat( "#;(#) ");   
  41.         s   =   formatter.format(-1234.567);     //   (1235)   
  42.         System.out.println(s);  
  43.    
  44.         //   The   '   symbol   is   used   to   quote   literal   symbols   
  45.         formatter   =   new   DecimalFormat( " '# '# ");   
  46.         s   =   formatter.format(-1234.567);        //   -#1235   
  47.         System.out.println(s);  
  48.         formatter   =   new   DecimalFormat( " 'abc '# ");   
  49.         s   =   formatter.format(-1234.567);      // - abc 1235  
  50.         System.out.println(s);  
  51.    
  52. formatter   =   new   DecimalFormat( "#.##%");   
  53.         s   =   formatter.format(-12.5678987);    
  54.         System.out.println(s);  

 

 

4. 字符串处理 String

String 类用来存储字符串,可以用charAt方法来取出其中某一字节,计数从0开始: 

 

String a = "Hello"; // a.charAt(1) = 'e' 

 

substring方法可得到子串,如上例 

 

System.out.println(a.substring(0, 4)) // output "Hell" 

 

注意第2个参数位置上的字符不包括进来。这样做使得 s.substring(a, b) 总是有 b-a个字符。 

 

字符串连接可以直接用 号,如 

 

String a = "Hello"; 

 

String b = "world"; 

 

System.out.println(a + ", " + b + "!"); // output "Hello, world!" 

 

如想直接将字符串中的某字节改变,可以使用另外的StringBuffer类。 

 

  1. import java.io.BufferedInputStream;  
  2. import java.math.BigInteger;  
  3. import java.util.Scanner;  
  4. public class Main {  
  5. public static void main(String[] args)   {  
  6. Scanner cin = new Scanner (new BufferedInputStream(System.in));  
  7.         int a = 123, b = 456, c = 7890;  
  8.         BigInteger x, y, z, ans;  
  9.         x = BigInteger.valueOf(a);   
  10.         y = BigInteger.valueOf(b);   
  11.         z = BigInteger.valueOf(c);  
  12.         ans = x.add(y); System.out.println(ans);  
  13.         ans = z.divide(y); System.out.println(ans);  
  14.         ans = x.mod(z); System.out.println(ans);  
  15.         if (ans.compareTo(x) == 0) System.out.println("1");  
  16.     }  
  17. }  




6. 进制转换
String st = Integer.toString(num, base); // num当做10进制的数转成base进制的st(base <= 35).
int num = Integer.parseInt(st, base); // st当做base进制,转成10进制的int(parseInt有两个参数,第一个为要转的字符串,第二个为说明是什么进制).  
BigInter m = new BigInteger(st, base); // st是字符串,basest的进制.
7. 数组排序
函数:Arrays.sort();

 

5. 高精度
BigIntegerBigDecimal可以说是acmer选择java的首要原因。
函数:add, subtract, divide, mod, compareTo等,其中加减乘除模都要求是BigInteger(BigDecimal)BigInteger(BigDecimal)之间的运算,所以需要把int(double)类型转换为BigInteger(BigDecimal),用函数BigInteger.valueOf().

 

  1. public class Main {  
  2. public static void main(String[] args)    {  
  3.         Scanner cin = new Scanner (new BufferedInputStream(System.in));  
  4.         int n = cin.nextInt();  
  5.         int a[] = new int [n];  
  6.         for (int i = 0; i < n; i++) a[i] = cin.nextInt();  
  7.         Arrays.sort(a);  
  8.         for (int i = 0; i < n; i++) System.out.print(a[i] + " ");  
  9.     }  
  10. }  


易错:

1.for(int i=m;i<n;i++){isFlowerNum(m);}  //这里m是不变量,应该用i

2.m=m/10的值就变化了如果想要继续用m,应该提前保存

 

 

 

 

 

 

 

一、Java之ACM注意点

1. 类名称必须采用public class Main方式命名

2. 在有些OJ系统上,即便是输出的末尾多了一个“ ”,程序可能会输出错误,所以在我看来好多OJ系统做的是非常之垃圾

3. 有些OJ上的题目会直接将OI上的题目拷贝过来,所以即便是题目中有输入和输出文件,可能也不需要,因为在OJ系统中一般是采用标准输入输出,不需要文件

4. 在有多行数据输入的情况下,一般这样处理,

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. static Scanner in = new Scanner(System.in);  
  2. while(in.hasNextInt())  
  3. 或者是  
  4. while(in.hasNext())  

5. 有关System.nanoTime() 函数的使用,该函数用来 返回最准确的可用系统计时器的当前值,以毫微秒为单位。

 

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. long startTime = System.nanoTime();  
  2. // ... the code being measured ...  
  3. long estimatedTime = System.nanoTime() - startTime;  

 

二、Java之输入输出处理

由于ACM竞赛题目的输入数据和输出数据一般有多组(不定),并且格式多种多样,所以,如何处理题目的输入输出是对大家的一项最基本的要求。这也是困扰初学者的一大问题。

1. 输入:

格式1Scanner sc = new Scanner (new BufferedInputStream(System.in));

格式2Scanner sc = new Scanner (System.in);

在读入数据量大的情况下,格式1的速度会快些。

读一个整数: int n = sc.nextInt()相当于 scanf("%d", &n); 或 cin >> n; 

读一个字符串:String s = sc.next(); 相当于 scanf("%s", s); 或 cin >> s; 

读一个浮点数:double t = sc.nextDouble(); 相当于 scanf("%lf", &t); 或 cin >> t; 

读一整行: String s = sc.nextLine(); 相当于 gets(s); 或 cin.getline(...); 

判断是否有下一个输入可以用sc.hasNext()sc.hasNextInt()sc.hasNextDouble()sc.hasNextLine()

1:读入整数

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. Input  输入数据有多组,每组占一行,由一个整数组成。   
  2. Sample Input   
  3. 56  
  4. 67  
  5. 100  
  6. 123   
  7.    
  8. import java.util.Scanner;  
  9. public class Main {  
  10. public static void main(String[] args) {  
  11. Scanner sc =new Scanner(System.in);  
  12. while(sc.hasNext()){  //判断是否结束  
  13. int score = sc.nextInt();//读入整数  
  14. 。。。。  
  15. }  
  16. }  
  17. }  
  18.    


 

2:读入实数

 

输入数据有多组,每组占2行,第一行为一个整数N,指示第二行包含N个实数。

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. Sample Input  
  2. 4   
  3. 56.9  67.7  90.5  12.8   
  4. 5   
  5. 56.9  67.7  90.5  12.8   
  6.    
  7. import java.util.Scanner;  
  8. public class Main {  
  9. public static void main(String[] args) {  
  10. Scanner sc =new Scanner(System.in);  
  11. while(sc.hasNext()){  
  12. int n = sc.nextInt();  
  13. for(int i=0;i<n;i++){  
  14. double a = sc.nextDouble();  
  15. 。。。。。。  
  16. }  
  17. }  
  18. }  
  19. }  
  20.    


 

3:读入字符串【杭电2017 字符串统计

输入数据有多行,第一行是一个整数n,表示测试实例的个数,后面跟着n行,每行包括一个由字母和数字组成的字符串。

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. Sample Input    
  2. 2  
  3. asdfasdf123123asdfasdf  
  4. asdf111111111asdfasdfasdf  
  5.    
  6. import java.util.Scanner;  
  7. public class Main {  
  8. public static void main(String[] args) {  
  9. Scanner sc = new Scanner(System.in);  
  10. int n = sc.nextInt();  
  11. for(int i=0;i<n;i++){  
  12. String str = sc.next();  
  13. ......  
  14. }  
  15. }  
  16. }  
  17. import java.util.Scanner;  
  18. public class Main {  
  19. public static void main(String[] args) {  
  20. Scanner sc = new Scanner(System.in);  
  21. int n = Integer.parseInt(sc.nextLine());  
  22. for(int i=0;i<n;i++){  
  23. String str = sc.nextLine();  
  24. ......  
  25. }  
  26. }  
  27. }  
  28.    


 

3:读入字符串【杭电2005 第几天?

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. 给定一个日期,输出这个日期是该年的第几天。   
  2. Input  输入数据有多组,每组占一行,数据格式为YYYY/MM/DD组成  
  3. 1985/1/20  
  4. 2006/3/12  
  5. import java.util.Scanner;  
  6. public class Main {  
  7. public static void main(String[] args) {  
  8. Scanner sc = new Scanner(System.in);  
  9. int[] dd = {0,31,28,31,30,31,30,31,31,30,31,30,31};  
  10. while(sc.hasNext()){  
  11. int days = 0;  
  12. String str = sc.nextLine();  
  13. String[] date = str.split("/");  
  14. int y = Integer.parseInt(date[0]);  
  15. int m = Integer.parseInt(date[1]);  
  16. int d = Integer.parseInt(date[2]);  
  17. if((y%400 == 0 || (y%4 == 0 && y%100 !=0)) && m>2) days ++;  
  18. days += d;  
  19. for(int i=0;i<m;i++){  
  20. days += dd[i];  
  21. }  
  22. System.out.println(days);  
  23. }  
  24. }  
  25. }  


 

 

2. 输出  

函数:

System.out.print(); 

System.out.println(); 

System.out.format();

System.out.printf();  

 

杭电1170Balloon Comes!

Give you an operator (+,-,*, / --denoting addition, subtraction, multiplication, division respectively) and two positive integers, your task is to output the result. 

Input

Input contains multiple test cases. The first line of the input is a single integer T (0<T<1000) which is the number of test cases. T test cases follow. Each test case contains a char C (+,-,*, /) and two integers A and B(0<A,B<10000).Of course, we all know that A and B are operands and C is an operator. 

Output

For each case, print the operation result. The result should be rounded to 2 decimal places If and only if it is not an integer.

Sample Input

4

+ 1 2

- 1 2

* 1 2

/ 1 2

Sample Output

3

-1

2

0.50

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. import java.util.Scanner;  
  2. public class Main {  
  3. public static void main(String[] args) {  
  4. Scanner sc =new Scanner(System.in);  
  5. int n = sc.nextInt();  
  6. for(int i=0;i<n;i++){  
  7. String op = sc.next();  
  8. int a = sc.nextInt();  
  9. int b = sc.nextInt();  
  10. if(op.charAt(0)=='+'){  
  11. System.out.println(a+b);  
  12. }else if(op.charAt(0)=='-'){  
  13. System.out.println(a-b);  
  14. }else if(op.charAt(0)=='*'){  
  15. System.out.println(a*b);  
  16. }else if(op.charAt(0)=='/'){  
  17. if(a % b == 0) System.out.println(a / b);  
  18. else System.out.format("%.2f", (a / (1.0*b))). Println();  
  19. }  
  20. }  
  21. }  
  22. }  


 

3. 规格化的输出:
函数:
// 这里0指一位数字,#指除0以外的数字(如果是0,则不显示),四舍五入.
    DecimalFormat fd = new DecimalFormat("#.00#");
    DecimalFormat gd = new DecimalFormat("0.000");
    System.out.println("x =" + fd.format(x));
    System.out.println("x =" + gd.format(x));

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. public static void main(String[] args) {  
  2.     NumberFormat   formatter   =   new   DecimalFormat( "000000");   
  3.         String  s  =   formatter.format(-1234.567);     //   -001235   
  4.         System.out.println(s);  
  5.         formatter   =   new   DecimalFormat( "##");   
  6.         s   =   formatter.format(-1234.567);             //   -1235   
  7.         System.out.println(s);  
  8.         s   =   formatter.format(0);                      //   0   
  9.         System.out.println(s);  
  10.         formatter   =   new   DecimalFormat( "##00");   
  11.         s   =   formatter.format(0);                     //   00   
  12.         System.out.println(s);  
  13.    
  14.         formatter   =   new   DecimalFormat( ".00");   
  15.         s   =   formatter.format(-.567);               //   -.57   
  16.         System.out.println(s);  
  17.         formatter   =   new   DecimalFormat( "0.00");   
  18.         s   =   formatter.format(-.567);              //   -0.57   
  19.         System.out.println(s);  
  20.         formatter   =   new   DecimalFormat( "#.#");   
  21.         s   =   formatter.format(-1234.567);         //   -1234.6   
  22.         System.out.println(s);  
  23.         formatter   =   new   DecimalFormat( "#.######");   
  24.         s   =   formatter.format(-1234.567);        //   -1234.567   
  25.         System.out.println(s);  
  26.         formatter   =   new   DecimalFormat( ".######");   
  27.         s   =   formatter.format(-1234.567);       //   -1234.567   
  28.         System.out.println(s);  
  29.         formatter   =   new   DecimalFormat( "#.000000");   
  30.         s   =   formatter.format(-1234.567);      //   -1234.567000   
  31.         System.out.println(s);  
  32.           
  33.         formatter   =   new   DecimalFormat( "#,###,###");   
  34.         s   =   formatter.format(-1234.567);      //   -1,235   
  35.         System.out.println(s);  
  36.         s   =   formatter.format(-1234567.890);  //   -1,234,568   
  37.         System.out.println(s);  
  38.    
  39.         //   The   ;   symbol   is   used   to   specify   an   alternate   pattern   for   negative   values   
  40.         formatter   =   new   DecimalFormat( "#;(#) ");   
  41.         s   =   formatter.format(-1234.567);     //   (1235)   
  42.         System.out.println(s);  
  43.    
  44.         //   The   '   symbol   is   used   to   quote   literal   symbols   
  45.         formatter   =   new   DecimalFormat( " '# '# ");   
  46.         s   =   formatter.format(-1234.567);        //   -#1235   
  47.         System.out.println(s);  
  48.         formatter   =   new   DecimalFormat( " 'abc '# ");   
  49.         s   =   formatter.format(-1234.567);      // - abc 1235  
  50.         System.out.println(s);  
  51.    
  52. formatter   =   new   DecimalFormat( "#.##%");   
  53.         s   =   formatter.format(-12.5678987);    
  54.         System.out.println(s);  
  55. }  


 

4. 字符串处理 String

String 类用来存储字符串,可以用charAt方法来取出其中某一字节,计数从0开始: 

String a = "Hello"; // a.charAt(1) = 'e' 

substring方法可得到子串,如上例 

System.out.println(a.substring(0, 4)) // output "Hell" 

注意第2个参数位置上的字符不包括进来。这样做使得 s.substring(a, b) 总是有 b-a个字符。 

字符串连接可以直接用 号,如 

String a = "Hello"; 

String b = "world"; 

System.out.println(a + ", " + b + "!"); // output "Hello, world!" 

如想直接将字符串中的某字节改变,可以使用另外的StringBuffer类。 

5. 高精度
BigIntegerBigDecimal可以说是acmer选择java的首要原因。
函数:add, subtract, divide, mod, compareTo等,其中加减乘除模都要求是BigInteger(BigDecimal)BigInteger(BigDecimal)之间的运算,所以需要把int(double)类型转换为BigInteger(BigDecimal),用函数BigInteger.valueOf().

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. import java.io.BufferedInputStream;  
  2. import java.math.BigInteger;  
  3. import java.util.Scanner;  
  4. public class Main {  
  5. public static void main(String[] args)   {  
  6. Scanner cin = new Scanner (new BufferedInputStream(System.in));  
  7.         int a = 123, b = 456, c = 7890;  
  8.         BigInteger x, y, z, ans;  
  9.         x = BigInteger.valueOf(a);   
  10.         y = BigInteger.valueOf(b);   
  11.         z = BigInteger.valueOf(c);  
  12.         ans = x.add(y); System.out.println(ans);  
  13.         ans = z.divide(y); System.out.println(ans);  
  14.         ans = x.mod(z); System.out.println(ans);  
  15.         if (ans.compareTo(x) == 0) System.out.println("1");  
  16.     }  
  17. }  


 


6. 进制转换
String st = Integer.toString(num, base); // num当做10进制的数转成base进制的st(base <= 35).
int num = Integer.parseInt(st, base); // st当做base进制,转成10进制的int(parseInt有两个参数,第一个为要转的字符串,第二个为说明是什么进制).  
BigInter m = new BigInteger(st, base); // st是字符串,basest的进制.
7. 数组排序
函数:Arrays.sort();

 

 

[java]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. public class Main {  
  2. public static void main(String[] args)    {  
  3.         Scanner cin = new Scanner (new BufferedInputStream(System.in));  
  4.         int n = cin.nextInt();  
  5.         int a[] = new int [n];  
  6.         for (int i = 0; i < n; i++) a[i] = cin.nextInt();  
  7.         Arrays.sort(a);  
  8.         for (int i = 0; i < n; i++) System.out.print(a[i] + " ");  
  9.     }  
  10. }  


易错:

1.for(int i=m;i<n;i++){isFlowerNum(m);}  //这里m是不变量,应该用i

2.m=m/10的值就变化了如果想要继续用m,应该提前保存

目录
相关文章
|
12天前
|
设计模式 安全 Java
Java编程中的单例模式:理解与实践
【10月更文挑战第31天】在Java的世界里,单例模式是一种优雅的解决方案,它确保一个类只有一个实例,并提供一个全局访问点。本文将深入探讨单例模式的实现方式、使用场景及其优缺点,同时提供代码示例以加深理解。无论你是Java新手还是有经验的开发者,掌握单例模式都将是你技能库中的宝贵财富。
18 2
|
7天前
|
JSON Java Apache
非常实用的Http应用框架,杜绝Java Http 接口对接繁琐编程
UniHttp 是一个声明式的 HTTP 接口对接框架,帮助开发者快速对接第三方 HTTP 接口。通过 @HttpApi 注解定义接口,使用 @GetHttpInterface 和 @PostHttpInterface 等注解配置请求方法和参数。支持自定义代理逻辑、全局请求参数、错误处理和连接池配置,提高代码的内聚性和可读性。
|
14天前
|
Java API Apache
Java编程如何读取Word文档里的Excel表格,并在保存文本内容时保留表格的样式?
【10月更文挑战第29天】Java编程如何读取Word文档里的Excel表格,并在保存文本内容时保留表格的样式?
70 5
|
9天前
|
安全 Java 编译器
JDK 10中的局部变量类型推断:Java编程的简化与革新
JDK 10引入的局部变量类型推断通过`var`关键字简化了代码编写,提高了可读性。编译器根据初始化表达式自动推断变量类型,减少了冗长的类型声明。虽然带来了诸多优点,但也有一些限制,如只能用于局部变量声明,并需立即初始化。这一特性使Java更接近动态类型语言,增强了灵活性和易用性。
91 53
|
8天前
|
存储 安全 Java
Java多线程编程的艺术:从基础到实践####
本文深入探讨了Java多线程编程的核心概念、应用场景及其实现方式,旨在帮助开发者理解并掌握多线程编程的基本技能。文章首先概述了多线程的重要性和常见挑战,随后详细介绍了Java中创建和管理线程的两种主要方式:继承Thread类与实现Runnable接口。通过实例代码,本文展示了如何正确启动、运行及同步线程,以及如何处理线程间的通信与协作问题。最后,文章总结了多线程编程的最佳实践,为读者在实际项目中应用多线程技术提供了宝贵的参考。 ####
|
5天前
|
监控 安全 Java
Java中的多线程编程:从入门到实践####
本文将深入浅出地探讨Java多线程编程的核心概念、应用场景及实践技巧。不同于传统的摘要形式,本文将以一个简短的代码示例作为开篇,直接展示多线程的魅力,随后再详细解析其背后的原理与实现方式,旨在帮助读者快速理解并掌握Java多线程编程的基本技能。 ```java // 简单的多线程示例:创建两个线程,分别打印不同的消息 public class SimpleMultithreading { public static void main(String[] args) { Thread thread1 = new Thread(() -> System.out.prin
|
7天前
|
存储 缓存 安全
在 Java 编程中,创建临时文件用于存储临时数据或进行临时操作非常常见
在 Java 编程中,创建临时文件用于存储临时数据或进行临时操作非常常见。本文介绍了使用 `File.createTempFile` 方法和自定义创建临时文件的两种方式,详细探讨了它们的使用场景和注意事项,包括数据缓存、文件上传下载和日志记录等。强调了清理临时文件、确保文件名唯一性和合理设置文件权限的重要性。
20 2
|
8天前
|
Java UED
Java中的多线程编程基础与实践
【10月更文挑战第35天】在Java的世界中,多线程是提升应用性能和响应性的利器。本文将深入浅出地介绍如何在Java中创建和管理线程,以及如何利用同步机制确保数据一致性。我们将从简单的“Hello, World!”线程示例出发,逐步探索线程池的高效使用,并讨论常见的多线程问题。无论你是Java新手还是希望深化理解,这篇文章都将为你打开多线程的大门。
|
9天前
|
算法 Python
在Python编程中,分治法、贪心算法和动态规划是三种重要的算法。分治法通过将大问题分解为小问题,递归解决后合并结果
在Python编程中,分治法、贪心算法和动态规划是三种重要的算法。分治法通过将大问题分解为小问题,递归解决后合并结果;贪心算法在每一步选择局部最优解,追求全局最优;动态规划通过保存子问题的解,避免重复计算,确保全局最优。这三种算法各具特色,适用于不同类型的问题,合理选择能显著提升编程效率。
26 2
|
9天前
|
安全 Java 编译器
Java多线程编程的陷阱与最佳实践####
【10月更文挑战第29天】 本文深入探讨了Java多线程编程中的常见陷阱,如竞态条件、死锁、内存一致性错误等,并通过实例分析揭示了这些陷阱的成因。同时,文章也分享了一系列最佳实践,包括使用volatile关键字、原子类、线程安全集合以及并发框架(如java.util.concurrent包下的工具类),帮助开发者有效避免多线程编程中的问题,提升应用的稳定性和性能。 ####
36 1

热门文章

最新文章