JAVA的循环,选择的一些简单应用

import java.util.Scanner;

public class text {

public static void main(String[] args) {

/*

//1. 接收用户输入的一个整数num,判断它的正负零值,正数则输出"+",负数则输出"-",0则输出"0"

Scanner scan=new Scanner(System.in);

System.out.println("请输入一个整数");

int num= scan.nextInt();

if (num>0){

System.out.println("+");

}else if (num<0){

System.out.println("-");

}else {

System.out.println("0");

}

*/

/*

//2. 接收用户输入的年份year和月份month,计算该年该月的天数,并输出

*/

Scanner scan=new Scanner(System.in);

System.out.println("请输入年份:");

int year= scan.nextInt();

System.out.println("请输入月份:");

int month= scan.nextInt();

int day=0;

/*

//第一种

switch (month){

case 1:

case 3:

case 5:

case 7:

case 8:

case 10:

day=31;

break;

case 4:

case 6:

case 9:

case 11:

day=31;

break;

case 2:

if ((year%4==0&&year%100!=0)||year%400==0){

day=29;

}else {

day=28;

}

}

*/

//第二种

if (month==1||month==3||month==5||month==7||month==8||month==10||month==12){

day=31;

}else if (month==4||month==6||month==9||month==11){

day=30;

}else {

if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {

day = 29;

} else {

day = 28;

}

}

System.out.println(year+"年"+month+"月有"+day+"天");

/*

3. 利用循环语句while计算数字1到100的和,并输出

int sum=0;

int i=1;

while(i<101){

sum+=i;

i++;

}

System.out.println(sum);

*/

/*

4. 输出1900到2023年之间所有的闰年(每够10个年份,换一行)

int a=0;

for (int years=1900;years<2024;years++){

if ((years%4==0&&years%100!=0)||years%400==0){

System.out.print(years+"\t");

a++;

if (a%10==0){

System.out.println();

}

}

}

*/

}

}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值