第五章第二十八题(显示每月第一天是星期几)(Display the first days of each month)

第五章第二十八题(显示每月第一天是星期几)(Display the first days of each month)

  • **5.28(显示每月第一天是星期几)编写程序,提示用户输入年份和代表该年第一天是星期几的数字,然后在控制台上显示该年各个月份的第一天是星期几。例如,如果用户输入的年份是2013和代表2013年1月1日为星期二的2,程序应该显示如下输出:
    January 1, 2013 is Tuesday

    December 1, 2013 is Sunday
    **5.28 (Display the first days of each month) Write a program that prompts the user to enter the year and first day of the year, then displays the first day of each month in the year. For example, if the user entered the year 2013, and 2 for Tuesday, January 1, 2013, your program should display the following output:
    January 1, 2013 is Tuesday

    December 1, 2013 is Sunday
  • 参考代码:
package chapter05;

import java.util.Scanner;

public class Code_28 {
   
    public static void main(String[] args) {
   
        int year, theFirstDay, totalDay = 0;

        Scanner inputScanner = new Scanner(System.in);

        System.out.print("Enter the year: ");
        year = inputScanner.nextInt();

        System.out.print("Enter the first day of the year: ");
        theFirstDay = inputScanner.nextInt();

        for (int i = 1; i <= 12; i++) {
   
            switch (i) {
   
                case 1:
                    System<
Write a C++ program that defines a class DateV3 with the following: (1) private member variables: int year, month, day; (2) Has three constructors and one destructor as follows: The first constructor takes three parameters, int y, int m, int n; The second is the copy constructor that takes a DateV3 object as the parameter; The third is the default constructor that takes no parameter; The destructor takes no parameter. (3) Has overloaded operators: int operator-(DateV3 & oneDate); // return difference in days between the calling object and oneDate DateV3 operator+(int inc); // return a Date object that is inc days later than the calling object DateV3 operator-(int dec); // return a Date object that is dec days earlier than the calling object DateV3 operator++(); // overload the prefix ++ operator DateV3 operator++(int); // overload the postfix ++ operator friend ostream& operator<< (ostream& outputStream, DateV3& theDate); // overload the << operator Test class DateV3 in the main function as follows: (1) Declare and initialize an object to represent today, which should be the date that you work on this assignment. (2) Declare and initialize an object to represent your OWN birthday. (3) Express John’s birthday given John is 5 days older than yours. (4) Create Tom’s birthday by using the copy constructor, assuming Tom has the same birthday as you. (5) Display how many days have passed since your birth, John’s birth, and Tom’s birth, respectively. (6) Create an DateV3 object, someday, by cloning Tom’s birthday. Increment someday by the prefix operator ++ once, and by postfix operator ++ once. (7) Display someday, today, your birthday, John’s birthday, and Tom’s birthday. (8) Declare a DateV3 object to represent 28 February 2024, display it, apply the prefix ++ operator on it, display it again, and apply the postfix ++ operator on it and display it again. Hint: i) A good idea is to first design a function to compute the number of days that has passed since Year 1, Month 1, and Day 1, and then to use this function to compute the difference between two dates. ii) You can store the number of days for each of the 12 months in an integer array, which helps in counting the days and implementing the overloaded operators.
最新发布
06-11
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值