fork(1) download
  1. #include<iostream>
  2. #include<iomanip>
  3.  
  4. using namespace std;
  5.  
  6. int numero;
  7. float real;
  8. char carac;
  9. string frase;
  10.  
  11. int main(){
  12. cin >> numero;
  13. cin >> real;
  14. cin >> carac;
  15. cin.ignore();
  16. getline(cin,frase);
  17.  
  18. cout << numero << endl;
  19. cout << fixed;
  20. cout.precision(6) ;
  21. cout << real << endl << carac << endl << frase << endl;
  22.  
  23. return 0;
  24. }
  25.  
Success #stdin #stdout 0s 15240KB
stdin
10
20.5
a
texto com varias palavras
stdout
10
20.500000
a
texto com varias palavras