Please help me with C program to compare dates?
-
This is what the program calls for: Write a program that prompts the user to enter any number of dates in the format of mm/dd/yyyy and then indicates which date comes earliest on the calendar. The user will enter 0/0/0 to indicate that no more dates will be entered. Can anyone help me figure out how to do this correctly? This is what I have. #include <stdio.h> int main() { int i, month, day, year, minmonth, minday, minyear; for (i = 0; i < 1000; i++) { printf("Enter a date (mm/dd/yy): "); scanf("%d/%d/%d", &month, &day, &year); if (month < minmonth) { minmonth = month; } if (day < minday) { minday = day; } if (year < minyear) { minyear = year; } if (month == 0 && day == 0 && year == 0) { printf("%d/%d/%d is the earliest date\n", minmonth, minday, minyear); return 0; } } return 0; }
-
Answer:
You need to think about it logically (and implement that logic in your program)... date1 is earlier than date2 if: date1's year is less than date2's year or years are equal and date1's month is less than date2's month or years and months are equal and date1's day is less than date2's day else date2 can be considered less than date1
DMJKoba at Yahoo! Answers Visit the source
Related Q & A:
- How Can I use .net dll in C program?Best solution by Stack Overflow
- I did something really bad and now i need help please help me.Best solution by Yahoo! Answers
- Help with TV show, please help?Best solution by Yahoo! Answers
- I want to download full encyclopedia program, please help.Best solution by Yahoo! Answers
- Can anyone help me with this C++ program?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.