Programming > QUESTIONS & ANSWERS > uestion Answered step-by-step using System; using System.Collections.Generic; using System.Linq;... (All)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyDate { class MyDate { //instance variable private int _year,_m ... onth, _day; String[] MONTHS = { "jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec" }; String[] DAYS = { "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday" }; int[] DAYS_IN_MONTHS = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; // constructor public MyDate(int day,int month,int year) { SetDate(day, month, year); } public void SetYear(int year) { if (year < 1 || year>9999) { throw new ArgumentOutOfRangeException("Invalid year"); } _year = year; } public void SetMonth(int month) { if (month <1 || month>12) { throw new ArgumentOutOfRangeException("Invalid month"); } _month = month; } public void SetDay(int day) { if (day <1 || day> DAYS_IN_MONTHS[_month-1]) { throw new ArgumentOutOfRangeException("Invalid day"); } _day = day; } [Show More]
Last updated: 3 years ago
Preview 1 out of 14 pages
Buy this document to get the full access instantly
Instant Download Access after purchase
Buy NowInstant download
We Accept:
Can't find what you want? Try our AI powered Search
Connected school, study & course
About the document
Uploaded On
Aug 23, 2022
Number of pages
14
Written in
All
This document has been written for:
Uploaded
Aug 23, 2022
Downloads
0
Views
140
Scholarfriends.com Online Platform by Browsegrades Inc. 651N South Broad St, Middletown DE. United States.
We're available through e-mail, Twitter, Facebook, and live chat.
FAQ
Questions? Leave a message!
Copyright © Scholarfriends · High quality services·