万年历java】的更多相关文章

程序难点 : 1. 每年每个月有多少天? 2. 每个月的1号是星期几? 3. 每年的2月份是多少天? 难点解析 : 1. 每年每个月除去1 3 5 7 8 10 12是31天以外, 其他月份(除去2月)都是30天. 2. 根据java提供的Calendar的DAY_OF_WEEK来获取. c.get(Calendar.DAY_OF_WEEK); 注意, 在国外每周的第一天是周日,所以它的对应关系为 1  2  3  4  5  6  7   日 一 二 三 四 五 六 3. 平年28天, 闰年2…
public void showTime(){/*万年历 :  1900年1月20号是星期几?1月1号是星期一1月8号是星期一1月15号是星期一1%7 = 18%7 = 115%7 = 1★: 1. 用日期数去%7可以得到星期数 1900年2月12号是星期几?★: 2. 从1月1号 直到 2月12的总天数 % 7 得到星期数★★★: 为什么要算星期几?因为在打印万年历的时候,需要知道一个月份的1号是星期几,才能正确打印之后的日期 ★★★:2015年8月1号是星期几?1900-1-1到2015-8…
一.需求:计算网页访问量前三名 import org.apache.spark.rdd.RDD import org.apache.spark.{SparkConf, SparkContext} /** * 需求:计算网页访问量前三名 * 用户:喜欢视频 直播 * 帮助企业做经营和决策 * * 看数据 */ object UrlCount { def main(args: Array[String]): Unit = { //1.加载数据 val conf:SparkConf = new Spa…
import java.util.Scanner; public class Calendar { public static void main(String[] args) { // 万年历 int year;// 保存输入的年 int month;// 保存输入的月 System.out.println("请输入年份:"); Scanner key = new Scanner(System.in); year = key.nextInt(); System.out.println…
  万年历 以1900年1月1号星期一为时间原点 星期日 第一天 星期一 第二天 星期二 第三天 星期三 第四天 星期四 第五天 星期五 第六天 星期六 第七天            1.计算出当前日期距离原点的天数(例:2016/9/18)       2015到1900之间有多少个瑞年和平年-->count1                2016年一月到八月的总天数-->count2       本月的一号       count = count1+count2+1 2.计算出本月的一号…
Java流程控制练习--万年历 标签: Java入坑之旅 0x01. 打印倒三角和正三角 public static void main(String[] args) { // TODO Auto-generated method stub int i; int j; /** * 要求:打印一个倒三角以及一个正三角 * 方法:双层循环 **/ for(i=3;i>0;i--) { for(j=1;j<=i;j++) { System.out.print("*"); } Sy…
import java.util.Scanner; public class PrintCalendarDemo1 { public static void main(String[] args) { int year;//保存输入的年 int month;//保存输入的月 boolean isRn;//闰年保存true,否则为false int days=0;//保存月份的天数 int totalDays=0;//保存总的天数差 System.out.println("************…
曾经初学java写万年历,都是採用主要的算法求出是否闰年闰月 计算公式例如以下 int year = 2014, month = 8, total = 0; if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) { total = 31; } else if (month == 2) { if ((year % 4 == 0 && year…
import java.util.Scanner; public class perpetualCalendar { public static void main(String[] args) { // TODO Auto-generated method stub int year;//年 int month;//月 int day=0;//天数 boolean ren;//是闰年为true,不是为false int totalDays=0;//1900年到现在的总天数 System.out…
package oop; import java.util.Scanner; public class 万年历 { public static void main(String[] args) { // TODO 自动生成的方法存根 int zy=0;//年份天数 int yy=0;//月份天数 Scanner s = new Scanner(System.in); System.out.println("请输入年份"); int year = s.nextInt(); System.…