fork download
  1. #include <iostream>
  2. using namespace std;
  3. /*Esercizio 2 ) L'utente deve continuare a inserire dei caratteri fino a che non inserisce uno
  4. dopo l'altro due caratteri consecutivi ( ad esempio si ferma dopo aver letto )*/
  5. char c1,c2;
  6.  
  7. int main(){
  8. cin>>c1;
  9. cin>>c2;
  10. while (c1+1!=c2) // (c2-c1 == 1) questa sta a indicare che si differeziano per 1 unità perchè normalmente
  11. // non sono consecutivi
  12. {
  13. cin>>c1;
  14. cin>>c2;
  15. }
  16. cout<<c1<<" "<<c2<<endl;
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 5288KB
stdin
 q w r t  g  b a b 
stdout
a b