Advertisement
F22

Untitled

F22
Jan 30th, 2014
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.09 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4. const int N=3;
  5. struct SDane
  6. {
  7.     int x;
  8.     char y;
  9. };
  10.  
  11. int main()
  12. {
  13.     SDane tab[N][N];
  14.     string nazwa;
  15.     ifstream dane;
  16.     cin>>nazwa;
  17.     dane.open(nazwa.c_str());
  18.     while(!dane.good())
  19.     {
  20.         cout<<"Zla nazwa. Podaj znowu."<<endl;
  21.         cin>>nazwa;
  22.         dane.open(nazwa.c_str());
  23.     }
  24.     for(int i=0; i<N; i++)
  25.     {
  26.         for(int j=0; j<N; j++)
  27.         {
  28.             dane>>tab[i][j].x;
  29.             dane>>tab[i][j].y;
  30.         }
  31.     }
  32.     dane.close();
  33.     for(int i=0; i<N; i++)
  34.     {
  35.         for(int j=0; j<N; j++)
  36.         {
  37.             cout<<tab[i][j].x;
  38.             cout<<tab[i][j].y<<"  ";
  39.         }
  40.         cout<<endl;
  41.     }
  42.     ofstream wyniki;
  43.     wyniki.open("andrzej.txt",ios::app );
  44.     if(!wyniki.good())
  45.     {
  46.         cout<<"CRASH"<<endl;
  47.         return 0;
  48.     }
  49.     int l, m=0;
  50.     char z;
  51.     while(m<N)
  52.     {
  53.         cout<<"Podaj liczbe/litere: "<<endl;
  54.         cin>>l;
  55.         cin>>z;
  56.         wyniki<<l<<z<<" ";
  57.         m++;
  58.     }
  59.     wyniki.close();
  60.  
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement