4.Take 10 numbers from the user, check all the number one by one, if it is an odd number, store it in odd.txt file, if it is an even number, store it in even.txt file. Use command line arguments.
/* j_5_P_4
Take 10 numbers from the user, check all the number one by one, if it is an
odd number, store it in odd.txt file, if it is an even number, store it in
even.txt file. Use command line arguments.
*/
#include <iostream.h>
#include <conio.h>
#include <fstream.h>
void main(int argc[], char *argv[])
{
ofstream obj1;
ofstream obj2;
int no;
clrscr();
obj1.open(argv[1]);
obj2.open(argv[3]);
do
{
cout << "Enter Any no: ";
cin >> no;
if( no % 2 == 1 )
{
obj1 << no << endl;
}
else
{
obj2 << no << endl;
}
}
while(no != 0);
obj1.close();
obj2.close();
getch();
}
Comments
Post a Comment