How to Write Form Data to XML?

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

Was this solution helpful to you?

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. :-(

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.