1234567891011121314151617181920212223242526272829303132333435 |
- #include <iostream> // not needed for many systems
- #include <fstream>
- #include <string>
- int main()
- {
- using namespace std;
- string filename;
- cout << "Enter name for new file: ";
- cin >> filename;
- ofstream fout(filename.c_str());
- fout << "For your eyes only!\n";
- cout << "Enter your secret number: ";
- float secret;
- cin >> secret;
- fout << "Your secret number is " << secret << endl;
- fout.close();
- ifstream fin(filename.c_str());
- cout << "Here are the contents of " << filename << ":\n";
- char ch;
- while (fin.get(ch))
- cout << ch;
- cout << "Done\n";
- fin.close();
-
-
- return 0;
- }
|