Advertisement
programusy

zajonc pytel kod wyjatek

Mar 22nd, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | Fixit | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cstdio>
  4. #include <ctime>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.     FILE *plik;
  11.     srand(time(0));
  12.  
  13.     try{
  14.         if((plik=fopen("zapis.txt", "a")) == 0){
  15.             throw 1234567;
  16.         }
  17.  
  18.         else{
  19.             int liczba = rand();
  20.             fprintf(plik, "%i\n", liczba);
  21.             cout << "Zapisano: " << liczba << endl;
  22.         }
  23.     }
  24.     catch(int x){
  25.         cout << "Nie otwarto pliku" << endl;
  26.         cout << "no i koniec: " << x;
  27.     }
  28.     fclose(plik);
  29.  
  30.     //sussy
  31.  
  32.     return 0;
  33. }
Tags: Kod pytel zajonc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement