首页 > 代码库 > ACM常用的Java代码
ACM常用的Java代码
1 import java.util.*; 2 import java.io.*; 3 4 public class Main { 5 public static void main(String[] args) throws IOException{ 6 // 计算程序运行时间 7 // Arrays 8 long st = System.currentTimeMillis(); 9 if ("abc" == "abc") System.out.println("Yes1");10 String str1 = new String("abc");11 String str2 = new String("abc");12 if (str1 == str2) System.out.println("Yes2");13 if (str1.equals(str2)) System.out.println("Yes3");14 15 //16 int[] t = {5, 1, 3, 2, 9};17 Arrays.sort(t);18 System.out.println(Arrays.toString(t));19 int[] s = new int[10];20 Arrays.fill(s, 33);21 System.out.println(Arrays.toString(s));22 // returns ((-insertion point) - 1) if key not exists.23 System.out.println(Arrays.binarySearch(t, 4));24 int cnt = 0;25 for (int i = 1; i < 100000000; i++) {cnt++;}26 long ed = System.currentTimeMillis();27 System.out.println("time: " + (ed - st));28 29 // 字符串hash30 String str = new String("hello world");31 System.out.println("hash Code: " + str.hashCode());32 33 // BufferReader缓冲与换行读取功能34 BufferedReader cin = new BufferedReader(new InputStreamReader(System.in));35 int sum = 0;36 String ss = null;37 while ((ss = cin.readLine()) != null) {38 sum += Integer.parseInt(ss);39 }40 System.out.println("the sum is: " + sum);41 42 //43 44 }45 }
ACM常用的Java代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。