JAVA 编程题

1.利用DataInputStream类和BufferedInputStream类编写一个程序,实现从键盘读入一个字符串,在显示器上显示前两个字符的Unicode码以及后... 1.利用DataInputStream类和BufferedInputStream类编写一个程序,实现从键盘读入一个字符串,在显示器上显示前两个字符的Unicode码以及后面的所有字符。
2.编写一个程序,让一个小球在Applet中滚动,当碰到边缘时,则选择一个角度反弹回去。
3.创建一个Frame类型窗口,在窗口中添加2个不同颜色的Panel面板,每个面板中添加2个按钮构件。

如能回答,不胜感激
展开
 我来答
百度网友63475b6
2014-09-12
知道答主
回答量:17
采纳率:0%
帮助的人:15.8万
展开全部
第三题的答案

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);
}
}
久留须由美
2014-09-09 · TA获得超过117个赞
知道答主
回答量:131
采纳率:100%
帮助的人:64.5万
展开全部
/**
*
* @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,至于输入选择那些,就不写了。
这样可以么?
追问
你这是哪题啊?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式