为了账号安全,请及时绑定邮箱和手机立即绑定

Java入门第一季(IDEA工具)升级版

public class HelloWorld {

public static void main(String[] args) {
// 创建对象,对象名为hello
HelloWorld hello = new HelloWorld ;

// 调用方法
hello.showMyLove();
}

/*
* 定义无参无返回值的方法
*/
public void showMyLove() {
System.out.println("我爱慕课网!");
}
}
public int getMaxAge() {
int[]ages={18 ,23 ,21 ,19 ,25 ,29 ,17};
int max=ages[0];
for(int i=0;i<ages.length;i++){
if(ages[i]>max)
max=ages[i];
}
return max;
}
public static void main(String[] args) {
// 创建对象,对象名为hello
HelloWorld hello = new HelloWorld();
// 调用方法并将返回值保存在变量中
int maxScore=hello. getMaxAge();
// 输出最大年龄
System.out.println("最大年龄为:" + maxScore);
}
举例中定义的方法名应该是calcSum,打成了calSum
没用嵌套写法也过了- -
public static void main(String[] args) {
int num=999;
int count = 0;
for(num=999;num>0;num/=10){
if(num>0){
count++;}
}


System.out.println("它是个"+count+"位数");
int num=999;
int count = 0;
while(num>0){
count++;
num/=10;}

System.out.println("它是个"+count+"位数");
// 只要成绩小于60,就循环执行加分操作,并统计加分次数
while(score<60){
count++;
score+=count;
}
System.out.println("加分后成绩:"+score);
System.out.println("共加了"+count+"次");


一开始我是这么写的,就觉得很奇怪,为什么输出的结果不对。翻下来看了评论,原来count已经不再是1了
感谢慕课网
ublic class HelloWorld{
public static void main(String[] args) {
String hobby="慕课网";
System.out.println(hobby);
}
}
Arrays.sort(scores);
int j=0;
for(int i=scores.length-1;i>=0;i--){
if(scores[i]<100 && scores[i]>0){
j++;
if(j<=3){
System.out.println(scores[i]);
}
}
}
522
大一没有怎么学。。现在开始认真从新开始了
int age=25;
if (age>60){
System.out.println("老年");
}else if(age>40){
System.out.println("中年");
}else if(age>18){
System.out.println("少年");
}else if(age<18){
System.out.println("童年");

}
[51, 63, 24, 60, 62, 36, 23, 10, 86, 96, 54, 20, 92, 48, 15, 98, 47, 93, 89, 99]
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
do {
count ++;
num /= 10;
} while (num > 1);

System.out.println("它是个" + count + "位数");
}
}
课程须知
学习中需要用到这些工具: —JDK-Java开发环境 —IDEA编程开发工具 课程适合零基础的同学,只要你对Java有兴趣,都可以0成本完成入门!
老师告诉你能学到什么?
1、会配置Java开发环境,并使用工具进行程序开发 2、掌握Java中基本语法的使用并入门

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消