问题描述
给定一个年份,判断这一年是不是闰年。
当以下情况之一满足时,这一年是闰年:
1. 年份是4的倍数而不是100的倍数;
2. 年份是400的倍数。
其他的年份都不是闰年。
说明:当试题指定你输出一个字符串作为结果(比如本题的yes或者no,你需要严格按照试题中给定的大小写,写错大小写将不得分。
import java.util.Scanner; public class Judge { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int year = sc.nextInt(); if((year%4==0 && year%100!=0) || year%400==0) { System.out.println("yes"); }else { System.out.println("no"); } } }
问题描述
对于长度为5位的一个01串,每一位都可能是0或1,一共有32种可能。它们的前几个是:
00000
00001
00010
00011
00100
请按从小到大的顺序输出这32种01串。
public class String01 { public static void main(String[] args) { for(int i=0;i<=31;i++) { System.out.print(i%32/16); System.out.print(i%16/8); System.out.print(i%8/4); System.out.print(i%4/2); System.out.print(i%2); System.out.println(); } } }
原文:https://www.cnblogs.com/LinawZ/p/10386360.html