Java Scanner 的 ACM 常用输入模板

• 下面给你一版 Java Scanner 的 ACM 常用输入模板,够笔试直接套。

import java.util.*;

public class Main {

public static void main(String\[\] args) {

Scanner sc = new Scanner(System.in);

// 1. 读一个 int

int n = sc.nextInt();

// 2. 读一个 long

long x = sc.nextLong();

// 3. 读一个 double

double d = sc.nextDouble();

// 4. 读一个 String(不含空格)

String s1 = sc.next();

// 5. 读一整行 String(可包含空格)

sc.nextLine(); // 如果前面用了 nextInt/next/nextLong 等,要先清理回车

String s2 = sc.nextLine();

// 6. 读一个 char

char c = sc.next().charAt(0);

// 7. 读一个 int\[\]

int len = sc.nextInt();

int\[\] nums = new intlen;

for (int i = 0; i < len; i++) {

numsi = sc.nextInt();

}

// 8. 读一个 long\[\]

int len2 = sc.nextInt();

long\[\] arrLong = new longlen2;

for (int i = 0; i < len2; i++) {

arrLongi = sc.nextLong();

}

// 9. 读一个 String\[\]

int len3 = sc.nextInt();

String\[\] strs = new Stringlen3;

for (int i = 0; i < len3; i++) {

strsi = sc.next();

}

// 10. 读一个 char\[\]

char\[\] chars = sc.next().toCharArray();

// 11. 读一个二维 int 数组

int rows = sc.nextInt();

int cols = sc.nextInt();

int\[\]\[\] grid = new introwscols;

for (int i = 0; i < rows; i++) {

for (int j = 0; j < cols; j++) {

gridij = sc.nextInt();

}

}

// 12. 读多行字符串数组(每行按空格分割)

int m = sc.nextInt();

sc.nextLine(); // 清理回车

String\[\]\[\] lines = new Stringm\[\];

for (int i = 0; i < m; i++) {

linesi = sc.nextLine().split(" ");

}

}

}

你最该记住的是这几条:

  1. 基本类型

int n = sc.nextInt();

long x = sc.nextLong();

double d = sc.nextDouble();

  1. 字符串

String s = sc.next(); // 读一个单词

String line = sc.nextLine(); // 读一整行

  1. 字符

char c = sc.next().charAt(0);

  1. 数组

int\[\] nums = new intn;

for (int i = 0; i < n; i++) numsi = sc.nextInt();

  1. 字符数组

char\[\] chars = sc.next().toCharArray();

  1. 最重要的坑

如果前面用了:

nextInt() / nextLong() / next() / nextDouble()

后面想用:

nextLine()

通常都要先补一句:

sc.nextLine();

因为要清掉残留回车。


给你一版笔试最常用精简模板:

import java.util.*;

public class Main {

public static void main(String\[\] args) {

Scanner sc = new Scanner(System.in);

int n = sc.nextInt();

int\[\] nums = new intn;

for (int i = 0; i < n; i++) {

numsi = sc.nextInt();

}

sc.nextLine(); // 如果后面要读整行字符串

String line = sc.nextLine();

char\[\] chars = sc.next().toCharArray();

}

}

相关推荐
如竟没有火炬4 分钟前
最大矩阵——单调栈
数据结构·python·线性代数·算法·leetcode·矩阵
Jinkxs25 分钟前
Java 跨域14-Java 与区块链(Hyperledger)集成
java·开发语言·区块链
8Qi834 分钟前
LeetCode 1143 & 718:最长公共子序列 / 最长重复子数组
算法·leetcode·职场和发展·动态规划
绿算技术1 小时前
万卡推理集群存储选型分析:从核心架构到应用视角
大数据·科技·算法·架构
晨曦中的暮雨1 小时前
Golang速通(Javaer版)
java·开发语言·后端·golang
七老板的blog2 小时前
当 Spring StateMachine 遇见大模型:构建工业级 AI 写作流水线
java·人工智能·spring
想吃火锅10052 小时前
【leetcode】1.两数之和js版
javascript·算法·leetcode
云烟成雨TD2 小时前
Spring AI 1.x 系列【46】MCP Security 模块
java·人工智能·spring
CRMEB系统商城2 小时前
CRMEB多商户系统(Java)v2.3公测版发布
java·开发语言·人工智能·小程序·开源·php