Pella86

Lezione 1 - La carta

Oct 9th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     string carta1 = "Re di fiori";
  9.     string carta2 = "Donna di fiori";
  10.     string carta3 = "Fante di fiori";
  11.     string carta4 = "10 di fiori";
  12.     // ecc ecc il mazzo ha 52 carte :O
  13.  
  14.     cout << carta1 << endl;
  15.  
  16.     cout << "Hello world!" << endl;
  17.     return 0;
  18. }
  19.  
  20.  
  21. /* OUTPUT
  22. Re di fiori
  23. Hello world
  24. */
Advertisement
Add Comment
Please, Sign In to add comment