kozubovskyy

Untitled

Feb 9th, 2022
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     cout << "Inserisci il tuo nome: " << endl;
  8.     char nome[20] ;
  9.     cin >> nome ;
  10.     int i = 0 ;
  11.     while ( nome[i] != '\0' )
  12.     {
  13.         i++ ;
  14.     }
  15.  
  16.     cout << "Il tuo nome รจ lungo " << i ;
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment