Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdlib.h>
  3. #include <string>
  4. using namespace std;
  5. int main ()
  6. {
  7. cout<<"CREA IL TUO PROFILO"<<endl;
  8. string nome = "";
  9. cout<<"Inserisci il tuo nome"<<endl;
  10. cin>>nome;
  11. string cognome = "";
  12. cout<<"Inserisci il tuo cognome"<<endl;
  13. cin>>cognome;
  14. int anni = 0;
  15. cout<<"Quanti anni hai?"<<endl;
  16. cin>>anni;
  17.  
  18. string hobby = "";
  19. cout<<"Hai degli hobby??\nSi\nNo"<<endl;
  20.  
  21. if (hobby == "Si")
  22. {
  23. cout<<"Inserisci i tuoi hobby"<<endl;
  24. cin>>hobby;
  25. }
  26.  
  27.  
  28.  
  29. return 0 ;
  30.  
  31.  
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement