How to compare dates in Angularjs?

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

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

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.