Write the program that reads the data from the keyboard in the form 'mm dd yy' display the date?
-
write the program that reads the data from the keyboard in the form 'mm dd yy' display the date.
-
Answer:
Ok I not sure what you are trying to do. Why do you want to WRITE what you type in a date format? but to do that you would just break your input into 2 spaces each time If your wanting to get the date in your program try using a date function Example X = Date$ - this would give you the current date and if want it broke down as above you will need to use a format command with it
Shija at Yahoo! Answers Visit the source
Other answers
What?? In what language?? C++? #include<iostream> using namespace std; int main() { int month; int day; int year; cout << "Enter month" << endl; cin >> month; cout << "Enter day" << endl; cin >> day; cout << "Enter year" << endl; cin >> year; cout << month << "/" << day << "/" << year; cin.get(); return 0; } Well thats what I think you meant Hope this helped
Er - WHY should I write that program? I don't WANT that program, I certainly don't NEED it, so why should I write it? Perhaps you should do your OWN homework, and actually LEARN something! Out here in the "real" world, we don't need any cheaters, losers, or drop-outs, and when you use some one Else's work and claim it as your own, that's exactly what you become. :-(
Related Q & A:
- How to display Android database data in a ListView?Best solution by Stack Overflow
- How to process those data like this form by jquery "Traversal?Best solution by Stack Overflow
- How to write a program to monitor the temperature of CPU?Best solution by Stack Overflow
- How can I query Parse data by creation date with Swift?Best solution by Stack Overflow
- How to change the date format yyyy/mm/dd to dd/mm/yyyy in below code?Best solution by scn.sap.com
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.