Scnner键盘录入练习、Scnner键盘录入练习求最大值
Scnner键盘录入练习求和
来做一个测试,用键盘录入写出三个值,来求出值中最大的数,然后在写俩个数字,求出和
public class ScnnerTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int i = sc.nextInt();
int i1 = sc.nextInt();
System.out.println(i+i1);
}
}
Scnner键盘录入练习求最大值
我们来看 创建了一个键盘录入,然后录入俩个对象,在输出打印的时候求出他们的和
我们在来看三个数求出最大值:
public class ScnnerTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int i = sc.nextInt();
int i1 = sc.nextInt();
int i2 = sc.nextInt();
int aa= i>i1 ? i:i1;
int max = aa>i2 ? aa :i2;
System.out.println(max);
}
}
我们键盘录入存入三个值,然后使用 三元比较
求出最大值