整理用于机试考试输入输出
首先第一步是导包,java有自动导包机制,这一步可以忽略
常见的输入输出要求
1,一个数
2,一维数组
3,二维数组(或矩阵)
输入一般常用方法
循环输入输出
一般用for循环或者while循环(for循环更看重次数,while循环更看重条件)
下面看具体例子:
例1:这种是最基础的
美团笔试题:[编程题]淘汰分数
Scanner in = new Scanner(System.in);
int n = in.nextInt();
int x = in.nextInt();
int y = in.nextInt();
int[] score = new int[n];
for (int i = 0; i < n; i++) {
score[i] = in.nextInt();
}
例2
输入一个二维数组
//输入
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();//输入内存段数
int[][] seg = new int[n][2];//segment,起始地址加长度,n行2列
for (int i = 0; i < n; i++) {//输入每段内存的起始地址和长度
for (int j = 0; j < 2; j++) {
seg[i][j] = sc.nextInt();
}
}
import java.util.Scanner;
/**
* Scanner的简单示例
* */
public class TestScanner {
public static void main(String[] args) {
//创建Scanner对象
//System.in表示标准化输出,也就是键盘输出
Scanner sc = new Scanner(System.in);
//利用hasNextXXX()判断是否还有下一输入项
while (sc.hasNext()) {
//利用nextXXX()方法输出内容
String str = sc.next();
System.out.println(str);
}
}
}
参考链接:
https://blog.csdn.net/qq_42874319/article/details/117823740
https://www.cnblogs.com/zhengchenhui/p/6008618.html