Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. struct Punct
  6. {
  7. int x,y;
  8. void afiseaza()
  9. {
  10. cout<<"x:"<<x<<" y:"<<y"\n";
  11. }
  12. };
  13.  
  14. int main()
  15. {
  16. cout << "Hello world!" << endl;
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement