ofstream

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <iostream>
#include<fstream>
#include <conio.h>
using namespace std;
void main()
{
	int **a;
	int limit;
	cout<<"Enter Order Number for matrix : ";
	cin>>limit;
	a = new int *[limit];
	for(int i=0;i<limit;i++)
		a[i]=new int [limit];

	int  i, r, c;
	r=0; c=limit/2; // limit represent columns
	for(i=1; i<=(limit*limit); i++)
	{
		a[r][c]=i;
		if(i%limit==0)
		{
		r++;
		continue;
		}
		c++;
		r--;
		if(r<0) r=limit-1;
		if(c>limit-1) c=0;
	}

	cout << "\n\nMagic Square of Order " << limit << " x " << limit << " is \n\n";
	for(r=0; r<limit; r++)
	{
		for(c=0; c<limit; c++)
		{
			cout << a[r][c] << "\t";
		}
		cout << endl;
	}

	ofstream myfile;
	myfile.open ("magic.txt");
	myfile << limit<<endl;
	myfile.close();
	getch();
}


SO here is my magic square code and it's successful run as well , by the way
i wan to create a ofstream for it that store the input and the answer in the TXT file . can someone teach me please ? to store the answer in txt file

Example :
1
2
3
4
5
6
Enter Order Number for matrix : 3

Magic Square of order 3 x 3 is
8     1     6
3     5     7
4     9     2


and the file will be ofstream as in txt file as name magic.txt as
1
2
3
4
3
8     1     6
3     5     7
4     9     2
Last edited on
closed account (o3hC5Di1)
Hi there,

In the tutorial on this site there is a section that will show you how to do this:
http://cplusplus.com/doc/tutorial/files/

Hope that helps.

All the best,
NwN
not really understand about it..

i just don't know how to store the answer accordingly..
closed account (o3hC5Di1)
You're basically already doing the exact same thing, only to std::cout instead of a file:

31
32
33
34
35
36
37
38
39
cout << "\n\nMagic Square of Order " << limit << " x " << limit << " is \n\n";
	for(r=0; r<limit; r++)
	{
		for(c=0; c<limit; c++)
		{
			cout << a[r][c] << "\t";
		}
		cout << endl;
	}


I order to write that to a file at the same time, you can do:

1
2
3
4
5
6
7
8
9
10
11
12
13
        ofstream os("magic.txt"); //open file for writing
        cout << "\n\nMagic Square of Order " << limit << " x " << limit << " is \n\n";
	for(r=0; r<limit; r++)
	{
		for(c=0; c<limit; c++)
		{
			cout << a[r][c] << "\t";
                        os << a[r][c] << "\t";  //write number
		}
		cout << endl;
                os << "\n"; //new line
	}
        os.close(); //close file 


std::cout is an object of an output stream, used to send data to the standard ouput (screen).
std::ofstream is a file output stream, used to send data to a file.

Hope that helps.

All the best,
NwN
thanks ! it solved !
sorry and i ask again.
if after show the output of the matrix
and i pop out a command that

1
2
3
4
5
6
7
do u wan to save the file? [y yes ][n no]
cin>>choice;
if (choice==y)
   {
        ofstream myfile;
        string name;
    }


how i wan to input the filename for myself and not the file name that i initialize and can store the result of it?
closed account (o3hC5Di1)
Well I don't want to just keep giving you the solutions, because that way you don't learn anything.

1
2
3
4
5
6
7
8
9
10
11
12
13
 ofstream os("magic.txt"); //open file for writing
        cout << "\n\nMagic Square of Order " << limit << " x " << limit << " is \n\n";
	for(r=0; r<limit; r++)
	{
		for(c=0; c<limit; c++)
		{
			cout << a[r][c] << "\t";
                        os << a[r][c] << "\t";  //write number
		}
		cout << endl;
                os << "\n"; //new line
	}
        os.close(); //close file  


So after you output the square, as you did before, you ask the user if he wants to save.
If yes, you ask him for a filename.
You then create an ofstream-object that opens that file. (line 1 of example)
Then you write the output to it. (lines 3-11 of example)
Finally, you close the file (line 13 of example)

Try that and if you run into problem, feel free to come back to us with the code you have tried.

All the best,
NwN
I done it d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
cout<<"Do you want to save the file ?[y/n] : ";
	cin>>choice;
	cin.ignore();

	if(choice=='y'||choice=='Y')
	{
		ofstream myfile;
		string filename;
		cout << "\nPlease enter a file name to write: ";
		getline( cin, filename );

		myfile.open(filename.c_str());
		myfile<<limit<<endl;
		for(r=0; r<limit; r++)
		{
			for(c=0; c<limit; c++)
			{
				myfile << a[r][c] << "\t";
			}
			myfile << "\n";
		}
		myfile.close();
	}
	else if(choice=='n'||choice=='N')
	{
		cout<<endl;
	}
	
	while(choice!='y'&&choice!='Y'&&choice!='n'&&choice!='N')
	{
		cout<<"Please enter a correct input [y/n]"<<endl;
		cout<<"Do you want to save the file ?[y/n] : ";
		cin>>choice;
	}


Thanks for keep helping me ya !
closed account (o3hC5Di1)
Well done!
Glad I could help :)

All the best,
NwN
Topic archived. No new replies allowed.