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

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

public class HelloWorld{
public static void main(String[] args) {
System.out.println("我爱慕课网");
System.out.println("www.imooc.com");
}
}
有什么问题么???为什么说我错误 。
int one = 20 ;
float c=(float)one/2;
int d=one/2;
if((c-(float)d)==0){
System.out.println("one是偶数");
}
public class HelloWorld {
public static void main(String[] args) {
int age=17;
if (age>18)
{
System.out.println("成年");
}
else {System.out.println("未成年");

}






}
}
System.out.println("加分前成绩:"+score);

while(score != 60) {

score++;
count++;
}

System.out.println("加分后成绩:"+ score);

System.out.println("共加了 "+ count +" 次");

}
public class HelloWorld {
public static void main(String[] args) {
int one =20 ;
int result=one%2;
if(result==0){
System.out.println("one是一个偶数") ;
}




}
}
System.out.println("加分前成绩:"+score );
//打印输出加分前成绩
for(score=53;score<60;score++)
{
count+=1;
}
System.out.println("加分后成绩:"+score );
System.out.println("共加了"+count );
打印直角三角形
*
**
**
for (int i = 1; i<4;i++ ) {

// 内层循环控制每行的*号数
// 内层循环变量的最大值和外层循环变量的值相等
for (int j = 1; j<=i;j++ ) {

System.out.print("*");
}
public void menthed(int[] scores){
int j =3;
System.out.println("考试成绩的前三名为:");
for(int i = scores.length-1;i>0;i--){
if(scores[i]<=100&&scores[i]>=0&&j>0){
System.out.println(scores[i]);
j--;
}
}
}
}
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
HelloWorld hello = new HelloWorld();
int[] scores={89,-23,64,91,119,52,73};
Arrays.sort(scores);
hello.menthed(scores);
}
if(one%2==0)
{
System.out.println("one是偶数");
}
有点不明白~~
int x=(m*8/(n+2))%m;
System.out.println("a等于b:" + (a == b));
System.out.println("a大于b:" + (a > b));
System.out.println("a小于等于b:" + (a <= b));
System.out.println("str1等于str2:" + (str1== str2));
int sum=age1+age2+age3+age4;
double avg=sum/4;
int minus=age1-age2;
int newAge=--age1;
课程须知
学习中需要用到这些工具: —JDK-Java开发环境 —IDEA编程开发工具 课程适合零基础的同学,只要你对Java有兴趣,都可以0成本完成入门!
老师告诉你能学到什么?
1、会配置Java开发环境,并使用工具进行程序开发 2、掌握Java中基本语法的使用并入门

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消