展开全部
1、这种方式是控制台输入
Scanner sc = new Scanner(System.in);
String y = sc.nextLine();
2、网页方式
网页画个文本框 文本框名字为 name
后台程序
String name = request.getParameter("name");
Scanner sc = new Scanner(System.in);
String y = sc.nextLine();
2、网页方式
网页画个文本框 文本框名字为 name
后台程序
String name = request.getParameter("name");
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//拿到Scanner对象
Scanner sc = new Scanner(System.in);
//定义一个变量y用来接收键盘存入的数据
String y = sc.nextLine();
欢迎继续提问
Scanner sc = new Scanner(System.in);
//定义一个变量y用来接收键盘存入的数据
String y = sc.nextLine();
欢迎继续提问
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-04-09
展开全部
Scanner in=new Scanner(System.in);
String name=in.nextLine();
int age =in.nextInt();
char ch=in.next();
而且要在开始加上import java.util.*;
String name=in.nextLine();
int age =in.nextInt();
char ch=in.next();
而且要在开始加上import java.util.*;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Scanner sc =new Scanner(System.in);
int n = sc.nextInt(); // 接受数字
String str = sc.nextLine(); // 接受字符
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();//拿到的str就是从键盘读进来的
String str=br.readLine();//拿到的str就是从键盘读进来的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询