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

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

public class HelloWorld
public static void main(String[] args){
int one=20;
if (one%2==0){
System.out.println("one是偶数");
}
}
private void TScore(int[] scores) {
Arrays.sort(scores);
System.out.println("考试成绩的前三名为:");
for(int i=scores.length-1,j=0;i>=0&&j<3;i--)
{
if(scores[i]>100||scores[i]<0)
{
continue;
}
System.out.println(scores[i]);
j++;
}

}
这题你都能过,无法直视你的双眸。
至今为止还没有java和C的区别,除了开始的定义类和包
讲的很好,会继续学下去的
这个倒是第一次用,以前从来没见过
[48, 14, 26, 65, 73, 66, 77, 7]
都不对疯了
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
if(num>=0 && num<999999999){
while(num!=0)
{
count++;
num/=10;
}
}
System.out.println("它是个3位的数!");
}
}
public class Hello{
public static void main(String[] args){
int score=68;
String mark=(score>=60)?"及格":"不及格";
System.out.println("考试成绩如何:"+mark);
}
}
这题目的意思好难懂=_=b
public class HelloWorld{
public static void main(String[] args){
int a=18;
int b=18;
int sum=a+b;
System.out.println("两数之和为:"+sum);
}
}
主席套餐是什么gui啊23333333333333333
int there = one + two;
int there1 += one;
int there2 -= one;
int there3 *= one;
int there4 /= one;
int there5 %= one;
System.out.println("there1","there2","there3","there4","there5");
且学且努力
int a=5;
int b=a++;
System.out.println(a);
System.out.println(b);
运行结果里b可以理解,为什么a=6呢?
课程须知
学习中需要用到这些工具: —JDK-Java开发环境 —IDEA编程开发工具 课程适合零基础的同学,只要你对Java有兴趣,都可以0成本完成入门!
老师告诉你能学到什么?
1、会配置Java开发环境,并使用工具进行程序开发 2、掌握Java中基本语法的使用并入门

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消