Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream> // input/output stream
- #include <fstream> // file stream
- using namespace std;
- struct student{
- string ime;
- string prezime;
- int brojnaindex;
- double prosek;
- };
- int main()
- {
- ifstream cin("in.txt"); // input file stream
- ofstream cout("out.txt"); // output file stream
- int n;
- cin >> n;
- cout << n << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment