Click here to Skip to main content
15,880,543 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Q1. Write a function empDate () to compare two dates, it should return I if date 1 is before date 2, -1 if date 2 is before date 1 and o if dates are same. Here dates should e user input. As the dates are user input before writing empDate () write a function Isvalid () to find whether the input dates are valid or not.
,

What I have tried:

Didn't get the answer. Please solve this n provide the code from starting to end.
Posted
Updated 2-Jun-22 8:06am
Comments
Sean Ewington 2-Jun-22 13:29pm    
Thanks very much for your Question. We ask that on CodeProject, you post a clear, answerable question relevant to software development. In this case, your post poses a task for the members to perform, rather than a question they can help you answer. As such, your question has been removed. If would like to know more about how to post better questions on CodeProject, please email us at webmaster@codeproject.com.
Rick York 2-Jun-22 13:30pm    
Nope. That's your job.

While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.

So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.

If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]
 
Share this answer
 
Quote:
Didn't get the answer. Please solve this n provide the code from starting to end.

You are learning, homework is practicing because you learn by trial and error.
Just giving you an answer, or finding one on internet will defeat the purpose of homework.

in the matter of dates using the format yyyymmdd internally simplify comparisons.
C++
int Date1= 20220602;
// or
string Date2= "20220602";
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900