简单的java小程序编写

简单的java小程序编写,第1张

public interface AutoVehicle{}

public interface NonAutoVehicle{}

public abstract class VehicleClass implement AutoVehicle,NonAutoVehicle{

}

public class BusClass extend VehicleClass {}

具体方法,属性自己写吧,大概是这样

a  = scnextInt();

b  = scnextInt();

a < 0||b < 0

a

完整代码:

public class ComDiv {

public static void main(String[] args) {

int a;

int b;

int r;

Scanner sc = new Scanner(Systemin);

do {

Systemoutprintln("请输入两个整数:");

a  = scnextInt();

b  = scnextInt();

} while (a < 0||b < 0);

scclose();

while(b != 0){

r = a%b;

a = b;

b = r;

}

Systemoutprintln("两个数的最大公约数是:" +a);

}

}

演示:

代码:

public class StringBufferTest {

public static void main(String[] args) {

char[] ch = {'2','0','0','8','年'};

// 创建一个以"北京奥运会开幕时间:"为参数的StringBuffer对象

StringBuffer sb = new StringBuffer("北京奥运会开幕时间:");

// 在sb尾部追加"8月8日晚8点"字符串

sb = sbappend("8月8日晚8点");

// sb头部插入ch的内容

sbinsert(0, ch);

Systemoutprintln("字符串内容为:" + sbtoString());

int n = sbindexOf("北京");

// 将字符串中"北京"替换为"第29届"

sbreplace(5, 6, "第29届");

Systemoutprintln("替换后得到的字符串内容为:" + sbtoString());

// 字符串长度是

Systemoutprintln("字符串长度是:" + sbtoString()length());

// 删除字符串中从第6个字符开始到第18个字符位置的内容

sbdelete(5, 17);

Systemoutprintln("删除字符串后,得到的字符串内容是:" +sbtoString());

}

}

效果展示:

修改了一下:

public class lianxi03 {

    public static void main(String[] args) {

        double[][] d = new double[4][4]; //这里改一下

        String s="12,32,22,44;45,98,23;3232,44445;43,54";

        String[] sFirst=ssplit(";");

        for(int i=0; i<=sFirstlength-1; i++) {

            String[] sSecond=sFirst[i]split(",");

            for (int j=0; j<=sSecondlength-1; j++) {

                d[i][j] = DoubleparseDouble(sSecond[j]);

                Systemoutprintln(d[i][j]);

            }

        }

    }

}

以上就是关于简单的java小程序编写全部的内容,包括:简单的java小程序编写、初学者java小程序,求java大神帮我补充一下空缺代码!打印出两个整数a和b的最大公约数。、初学者java小程序,求java大神帮我补充一下空缺代码!等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/9867705.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存