欢迎来到知识库小白到大牛的进阶之路

当前位置 > 编写java程序编写java程序的软件

  • 编写java程序

    编写java程序

    import java.awt.*; import java.applet.*; public class tongxinyuan extends Applet{ public void paint(Graphics g){ int a=getWidth(); int b=getHeight(); int x=0;int y=0; int m=0; if(a>=b) m=b; if(a<b) m=a; for(int i=m;i>=20;i=i20){ g.drawOval(x,y,i,i); x=x+10;y=y+10; } } } 对应的html文件: <htm...

    2024-08-11 网络 更多内容 438 ℃ 373
  • 编写一个JAVA程序

    编写一个JAVA程序

    import java.awt.event.*; import java.awt.*; import javax.swing.*; public class Calc extends JFrame implements ActionListener{ //程序入口 public static void main(String[] args) { new Calc(); } //变量声明 private JLabel label,info; private JTextField num; private JButton calc,exit; //构造函数 public...

    2024-08-11 网络 更多内容 182 ℃ 865
  • java 程序编写

    java 程序编写

    import java.awt.*; import javax.swing.*; class MyWindow extends JFrame { JTextField textl, text2, text3, text4; public MyWindow(String s) {//这个方法是你要编写的 super(s); setBounds(100, 100, 400, 100); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setLayout(new FlowLayout(...

    2024-08-11 网络 更多内容 245 ℃ 771
  • Java程序编写

    Java程序编写

    class MyDate{int year;int month;int date;MyDate(int y, int m, int d){year = y;month = m;date = d;}public int getYear() {return year;}public void setYear(int year) {this.year = year;}public int getMonth() {return month;}public void setMonth(int month) {this.month = month;}public int getDate() {return da...

    2024-08-11 网络 更多内容 661 ℃ 152
  • 如何编写java程序

    如何编写java程序

    2在选择保存的窗口中输入后缀“.java”,然后保存即可。注意文件名必须和类名相同。 3同样右击文件,选择编辑即可在文件中进行编辑了。 前两个大括号之间回车,第二对大括号有一个间隔,直接按TAb键即可。 测试运行java程序: 打开运行命令,也可以直接在开菜单中输入CMD调用命令...

    2024-08-11 网络 更多内容 119 ℃ 870
  • 编写java程序

    编写java程序

    1.package exercise.circular;public class Circle { double radius; Circle() { radius=0; } Circle(double r) { radius=r; } public double getRadius() { return radius; } public double getPerimeter() { return Math.PI*2*radius; } public double getArea() { return Math.PI*radius*radius; } public void disp() { S...

    2024-08-11 网络 更多内容 184 ℃ 805
  • 编写一个Java程序

    编写一个Java程序

    package demo20; abstract class Employee { String name; // 姓名 char sex; // 性别 int basic = 2000;// 基本工资 public Employee(String name, char sex) { this.nam...

    2024-08-11 网络 更多内容 126 ℃ 972
  • 编写java应用程序

    编写java应用程序

    { System.out.println("java很有趣。"); System.out.println("努力学好java编程。"); //起点坐标不知如何中设置// } } 第三题: public class Test3{ public static void main (String args[]){ int i=12345; System.out.println(i>>3); //右移3位相当于整除8 System.out.println(i<<3); //左移3位相当...

    2024-08-11 网络 更多内容 464 ℃ 51
  • 编写java程序问题

    编写java程序问题

    public class T { public static void main(String[] args) { String str = args[0]; int count = 0; char c[] = str.toCharArray(); for (int i = 0; i < c.length; i++) { if (c[i] >= 65 && c[i] <= 90) { count++; } } System.out.print("字符串 :\"" + str + "\" 中有 " + count + " 个大写字母"); } }

    2024-08-11 网络 更多内容 841 ℃ 855
  • 编写一个java程序

    编写一个java程序

    /* * ***.java * * Created on 2007年1月13日, 下午9:40 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package know;/** * * @author Administrator */public class Main { /** Creates a new instance of Main */ public Main() { int year = 1800 +...

    2024-08-11 网络 更多内容 285 ℃ 329
新的内容
标签列表