当前位置: 技术问答>java相关
我需要帮助
来源: 互联网 发布时间:2015-07-14
本文导语: 我需要帮助 三个问题: 一、class Number{ public static void main(String[] args){ 这里输入x,y的值; z = x * y; System.out.printf(z); } } 我就是想在控制台端输入x,y 的值,我的书上写的一点也不清楚 二、输入"helo!"不含...
我需要帮助
三个问题:
一、class Number{
public static void main(String[] args){
这里输入x,y的值;
z = x * y;
System.out.printf(z);
}
}
我就是想在控制台端输入x,y 的值,我的书上写的一点也不清楚
二、输入"helo!"不含引号,打印即输出也是"hello!"
与上道题不一样的地方只有这道题是字符串。
三、用最少的代码写出对话框的小类,想要完整的,也是书上的太多,看不清呀
我想用这个方法showMessageDialog(Component parent,
Object message,
String title,
int messageType)
第一个参数是什么,第二个参数是什么,第三个参数是标题,第四个是类型
这个我知道
我想做成这样:
class ****{
public void showM(){
showMessageDialog(Component parent,
Object message,
String title,
int messageType)
}
}
之后调用方法showM()就可以显示了。可惜我不会呀
谢谢你的帮助
三个问题:
一、class Number{
public static void main(String[] args){
这里输入x,y的值;
z = x * y;
System.out.printf(z);
}
}
我就是想在控制台端输入x,y 的值,我的书上写的一点也不清楚
二、输入"helo!"不含引号,打印即输出也是"hello!"
与上道题不一样的地方只有这道题是字符串。
三、用最少的代码写出对话框的小类,想要完整的,也是书上的太多,看不清呀
我想用这个方法showMessageDialog(Component parent,
Object message,
String title,
int messageType)
第一个参数是什么,第二个参数是什么,第三个参数是标题,第四个是类型
这个我知道
我想做成这样:
class ****{
public void showM(){
showMessageDialog(Component parent,
Object message,
String title,
int messageType)
}
}
之后调用方法showM()就可以显示了。可惜我不会呀
谢谢你的帮助
|
1,import java.io.*;
public class Btest {
public static void main(String[] args) {
int x;
int y;
try{
System.out.println("please inpu the value");
x=System.in.read();
y=System.in.read();
System.out.println(x);
System.out.println(y);
}
catch(IOException ex)
{
System.err.println(ex);
}
}
}
2,
import java.io.*;
public class Btest {
public static void main(String[] args) {
try{
java.io.DataInputStream dis=new java.io.DataInputStream(System.in);
String s=null;
System.out.println("please the string");
s=dis.readLine();
System.out.flush();
System.out.println(s);
}
catch(IOException ex){
System.out.println(ex);
}
// B b1 = new B();
}
}
3。去查一查jdk帮助不就行了吗
public class Btest {
public static void main(String[] args) {
int x;
int y;
try{
System.out.println("please inpu the value");
x=System.in.read();
y=System.in.read();
System.out.println(x);
System.out.println(y);
}
catch(IOException ex)
{
System.err.println(ex);
}
}
}
2,
import java.io.*;
public class Btest {
public static void main(String[] args) {
try{
java.io.DataInputStream dis=new java.io.DataInputStream(System.in);
String s=null;
System.out.println("please the string");
s=dis.readLine();
System.out.flush();
System.out.println(s);
}
catch(IOException ex){
System.out.println(ex);
}
// B b1 = new B();
}
}
3。去查一查jdk帮助不就行了吗
|
NO3.Component parent是指对话框出现时的父窗体,如果制定了父窗体的话,MessageDialog将出现在父窗体的中央,也可不制定父窗体(设为null),
第二个参数是指你想要显示的message,可以是String ,ImageIcon,也可以是其他的object!
第二个参数是指你想要显示的message,可以是String ,ImageIcon,也可以是其他的object!
|
No1,No2:
BufferedReader reader = new BufferedReader(new InputStreamReader(System.In));
String strInput = reader.readLine();
BufferedReader reader = new BufferedReader(new InputStreamReader(System.In));
String strInput = reader.readLine();