蓝桥杯之快读快写模板,超级详细!

static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); // 快读
	static  PrintWriter pw = new PrintWriter(new OutputStreamWriter(System.out)); // 快写
	public static void main(String[] args) throws NumberFormatException, IOException 
	{
		int n = Integer.parseInt(br.readLine()); // 每次读入一行,把字符串转换为整型
		int a[] = new int[n];
		String s[] = br.readLine().split(" ");  // 每次读入一行,按空格进行拆分成字符串数组
		for(int i = 0; i < a.length; i++)
		{
			a[i] = Integer.parseInt(s[i]); // 把每个字符串数组变为整数
		}
		for(int i = 0; i < a.length; i++)
		{
			// 打印a数组,和System.out.print用法一样同时还能用“println”,“printf”等。
			pw.print(a[i] + " "); 
		}
		pw.flush(); // 关闭输出流
	}

你可能感兴趣的:(蓝桥杯,蓝桥杯,c++,java)