Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- using namespace std;
- const int N=3;
- struct SDane
- {
- int x;
- char y;
- };
- int main()
- {
- SDane tab[N][N];
- string nazwa;
- ifstream dane;
- cin>>nazwa;
- dane.open(nazwa.c_str());
- while(!dane.good())
- {
- cout<<"Zla nazwa. Podaj znowu."<<endl;
- cin>>nazwa;
- dane.open(nazwa.c_str());
- }
- for(int i=0; i<N; i++)
- {
- for(int j=0; j<N; j++)
- {
- dane>>tab[i][j].x;
- dane>>tab[i][j].y;
- }
- }
- dane.close();
- for(int i=0; i<N; i++)
- {
- for(int j=0; j<N; j++)
- {
- cout<<tab[i][j].x;
- cout<<tab[i][j].y<<" ";
- }
- cout<<endl;
- }
- ofstream wyniki;
- wyniki.open("andrzej.txt",ios::app );
- if(!wyniki.good())
- {
- cout<<"CRASH"<<endl;
- return 0;
- }
- int l, m=0;
- char z;
- while(m<N)
- {
- cout<<"Podaj liczbe/litere: "<<endl;
- cin>>l;
- cin>>z;
- wyniki<<l<<z<<" ";
- m++;
- }
- wyniki.close();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement