fork download
  1. #include <iostream>
  2. using namespace std;
  3. //dato un valore intero di input stampa i successivi 3 valori interi
  4. int main() {
  5.  
  6.  
  7. int x=3;
  8. cout<<x+1<<"\t"<<x+2<<"\t"<<x+3<<"\t"<<endl;
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
4	5	6