码迷,mamicode.com
首页 > 其他好文 > 详细

29数据输入

时间:2020-05-30 10:56:08      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:允许   变量   imp   print   输出   opera   scan   ring   col   

 1 /*
 2     数据输入:
 3         导包:
 4             import java.util.Scanner;
 5                 导包的动作必须出现在类定义的上边
 6         创建对象:
 7             Scanner sc = new Scanner(System.in);
 8                 上面这个格式里面,只有sc是变量名,可以变,其他的都不允许变。
 9         接收数据:
10             int x = sc.nextInt();
11                 上面这个格式里面,只有x是变量名,可以变,其他的都不允许变。
12 */
13 import java.util.Scanner;
14 
15 public class OperatorDemo{
16     public static void main (String[] args){
17     // 创建对象:
18     Scanner sc = new Scanner(System.in);
19     
20     //接收数据:
21     int x = sc.nextInt();
22     
23     //输出数据
24     System.out.println("x:"+x);
25         
26     }
27 }

 

29数据输入

标签:允许   变量   imp   print   输出   opera   scan   ring   col   

原文地址:https://www.cnblogs.com/zhengqiangchen/p/12991045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!