Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3.  
  4. using namespace std;
  5. ifstream f("cercuri.in");
  6. ofstream g("cercuri.out");
  7.  
  8.  
  9. struct cercuri{ int a[150],o[150],r[150];};
  10. cercuri v[150];
  11. int i,n;
  12.  
  13. void citire()
  14. {f>>n;
  15. for(i=1;i<=n;i++)
  16.   f>>v[i].a>>v[i].o>>v[i].r;
  17.  
  18.  
  19.  
  20. }
  21.  
  22.  
  23. int main()
  24. {
  25.  
  26.     return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement