java里的输入输出
2021/10/10 20:16:14
本文主要是介绍java里的输入输出,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
当一行输入字符串和数字时,为了能取到值
12 abc
Scanner scanner = new Scanner(System.in); String s = scanner.nextLine(); String[] s3 = s.split(" "); int n=Integer.parseInt(s3[0]); System.out.println(n); String s4=s3[1]; System.out.println(s4);
如果一行输入数字一行输入字符串的话
比如
12
aaaaaa
Scanner s = new Scanner(System.in); int n=s.nextInt(); String s1 = s.next(); System.out.println(s1);
或者
Scanner s = new Scanner(System.in); int n=s.nextInt(); s.nextLine(); System.out.println(n); String s1 = s.nextLine(); System.out.println(s1.charAt(0));
但这样写是不对的
Scanner s = new Scanner(System.in); int n=s.nextInt(); //s.nextLine(); System.out.println(n); String s1 = s.nextLine(); System.out.println(s1.charAt(0));
因为nextInt会把空格和回车保存下来
这篇关于java里的输入输出的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-29RocketMQ底层原理资料详解:新手入门教程
- 2024-11-29RocketMQ源码资料解析与入门教程
- 2024-11-29[开源]6.1K star!这款电视直播源神器真的太赞啦!
- 2024-11-29HTTP压缩入门教程:轻松提升网页加载速度
- 2024-11-29JWT开发入门指南
- 2024-11-28知识管理革命:文档软件的新玩法了解一下!
- 2024-11-28低代码应用课程:新手入门全攻略
- 2024-11-28哪些办公软件适合团队协作,且能够清晰记录每个阶段的工作进展?
- 2024-11-28全栈低代码开发课程:零基础入门到初级实战
- 2024-11-28拖动排序课程:轻松掌握课程拖动排序功能