上海启嘟渡科技商贸有限公司
SEARCH

与我们合作

我们专注提供互联网一站式服务,助力企业品牌宣传多平台多途径导流量。
主营业务:网站建设、移动端微信小程序开发、营销推广、基础网络、品牌形象策划等

您也可通过下列途径与我们取得联系:

微 信: wxyunyingzhe

手 机: 15624122141

邮 箱:

JAVA编程:编写一个applet,读取一个矩形的边长,然后输入一个空心矩形

更新时间:2025-01-11 06:24:45

import java.awt.*;

import javax.swing.*;

public class drawRech extends JApplet {

public void paint(Graphics g){

super.paint(g);

this.setBackground(Color.WHITE);

String width = JOptionPane.showInputDialog("Enter the width");

String height = JOptionPane.showInputDialog("Enter the height");

int wid = 0;

int heig = 0;

try{

wid = Integer.parseInt(width);

heig = Integer.parseInt(height);

}

catch(NumberFormatException e){

JOptionPane.showMessageDialog(null, "Wrong input");

}

g.drawRect(100, 100, wid, heig);

}

}

已添加异常处理,测试成功

多重随机标签

猜你喜欢文章

QQ客服 电话咨询