JAVA 编程题
1.利用DataInputStream类和BufferedInputStream类编写一个程序,实现从键盘读入一个字符串,在显示器上显示前两个字符的Unicode码以及后...
1.利用DataInputStream类和BufferedInputStream类编写一个程序,实现从键盘读入一个字符串,在显示器上显示前两个字符的Unicode码以及后面的所有字符。
2.编写一个程序,让一个小球在Applet中滚动,当碰到边缘时,则选择一个角度反弹回去。
3.创建一个Frame类型窗口,在窗口中添加2个不同颜色的Panel面板,每个面板中添加2个按钮构件。
如能回答,不胜感激 展开
2.编写一个程序,让一个小球在Applet中滚动,当碰到边缘时,则选择一个角度反弹回去。
3.创建一个Frame类型窗口,在窗口中添加2个不同颜色的Panel面板,每个面板中添加2个按钮构件。
如能回答,不胜感激 展开
2个回答
展开全部
第三题的答案
package image;
import java.awt.EventQueue;
public class Test {
private JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Test window = new Test();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public Test() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 466);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JPanel panel = new JPanel();
panel.setBackground(Color.YELLOW);
panel.setForeground(Color.BLACK);
panel.setBounds(10, 10, 414, 138);
frame.getContentPane().add(panel);
JButton btnNewButton_1 = new JButton("New button");
panel.add(btnNewButton_1);
JButton btnNewButton = new JButton("New button");
panel.add(btnNewButton);
JPanel panel_1 = new JPanel();
panel_1.setBackground(Color.GREEN);
panel_1.setBounds(10, 158, 414, 259);
frame.getContentPane().add(panel_1);
JButton btnNewButton_3 = new JButton("New button");
panel_1.add(btnNewButton_3);
JButton btnNewButton_2 = new JButton("New button");
panel_1.add(btnNewButton_2);
}
}
package image;
import java.awt.EventQueue;
public class Test {
private JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Test window = new Test();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public Test() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 466);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JPanel panel = new JPanel();
panel.setBackground(Color.YELLOW);
panel.setForeground(Color.BLACK);
panel.setBounds(10, 10, 414, 138);
frame.getContentPane().add(panel);
JButton btnNewButton_1 = new JButton("New button");
panel.add(btnNewButton_1);
JButton btnNewButton = new JButton("New button");
panel.add(btnNewButton);
JPanel panel_1 = new JPanel();
panel_1.setBackground(Color.GREEN);
panel_1.setBounds(10, 158, 414, 259);
frame.getContentPane().add(panel_1);
JButton btnNewButton_3 = new JButton("New button");
panel_1.add(btnNewButton_3);
JButton btnNewButton_2 = new JButton("New button");
panel_1.add(btnNewButton_2);
}
}
展开全部
/**
*
* @param method 出行的方式
* @param point // 要到达的站点
* @return
*/
public float getMoney(int method, int point) {
if (method == 1) {
return 2;
}
if (method == 2) {
if (p <= 3) {
return 2;
}
if (point > 3 && point <= 6)
return 4;
else
return 5;
}
if (method == 3) {
return taxi(point, 1.9);
} else
return 0;
}
/**
* 打的时候所需要的钱
* @param point 到达的站点
* @param price 单价
* @return
*/
public float taxi(int point, double price) {
int sum = 0;
for (int i = 0; i < point; i++) {
sum += Integer.parseInt(stations[i][1]) * price;
}
return sum;
}
刚好开着eclipse,至于输入选择那些,就不写了。
这样可以么?
*
* @param method 出行的方式
* @param point // 要到达的站点
* @return
*/
public float getMoney(int method, int point) {
if (method == 1) {
return 2;
}
if (method == 2) {
if (p <= 3) {
return 2;
}
if (point > 3 && point <= 6)
return 4;
else
return 5;
}
if (method == 3) {
return taxi(point, 1.9);
} else
return 0;
}
/**
* 打的时候所需要的钱
* @param point 到达的站点
* @param price 单价
* @return
*/
public float taxi(int point, double price) {
int sum = 0;
for (int i = 0; i < point; i++) {
sum += Integer.parseInt(stations[i][1]) * price;
}
return sum;
}
刚好开着eclipse,至于输入选择那些,就不写了。
这样可以么?
追问
你这是哪题啊?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询