Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
In this program i want to print day of the date without using inbuilt calendar packages.. And i'm not able to get exact answer for certain dates (input date). in this i get day of the date correctly for only upto 31.12.0004. Note that it is the assessment given by my guide 5 days before still i'm not getting correct answer and I'm not supposed to use calendar packages and api's because syllabus for my course completed lists : basic array, if & else, for loops, class and objects.
import java.util.Scanner; class calendarr { public static void main(String arg[]) { int z=0; do{ int id,im,iy; Scanner ip = new Scanner(System.in); System.out.print("Enter DD MM YYYY : "); id = ip.nextInt(); im = ip.nextInt(); iy = ip.nextInt(); System.out.print("\n"); int totalDays = 0, leapYearDays = 366, ordinaryYearDays = 365, y = iy-1,day=0; int totalDaysOfGivenYear,totalDaysUptoGivenMonth=0, totalDaysEntire; int leapYearCount = y%4, ordinaryYearCount = y - leapYearCount; int totalDaysUptoPreviousYear=0; int totalDaysUptoPreviousYearCount = (leapYearCount * leapYearDays)+(ordinaryYearCount * ordinaryYearDays); System.out.print("Odd Days Leap Year and Ordinary Year : "+leapYearCount+" "+ordinaryYearCount+"\n"); String[] months = new String[] {"January","February","March","April","May","June","July","August","September","October","November","December"}; int[] monthDates = new int[] {0,31,28,31,30,31,30,31,31,30,31,30,31}; String[] weekDays = new String[] {"Saturday","Sunday" REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
Hey there were some fixes required in your code check this code it works now.
import java.util.Scanner; public class calendarr { public static void main(String arg[]) { int z=0; do{ int id,im,iy; Scanner ip = new Scanner(System.in); System.out.print("Enter DD MM YYYY : "); id = ip.nextInt(); im = ip.nextInt(); iy = ip.nextInt(); System.out.print("\n"); int totalDays = 0, leapYearDays = 366, ordinaryYearDays = 365, y = iy-1,day=0; int totalDaysOfGivenYear,totalDaysUptoGivenMonth=0, totalDaysEntire; int leapYearCount = 0; //calculate the number of leap and non leap years for(int i=0;i<=y;i++){ if((i%4==0)&&(i%100!=0)||(i%400==0)) { leapYearCount++; } } int ordinaryYearCount = y - leapYearCount; int totalDaysUptoPreviousYear=0; int totalDaysUptoPreviousYearCount = (leapYearCount * leapYearDays)+(ordinaryYearCount * ordinaryYearDays); System.out.print("Odd Days Leap Year and Ordinary Year : "+leapYearCount+" "+ordinaryYearCount+"\n"); String[] months = new String[] {"January","February","March","April","May","June","July","August","September","October","November","December"}; int[] monthDates = new int REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.