fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6. scanf("%d", &n);
  7. printf("Introduci un numero positivo");
  8. printf("\nIl numero è: %d\n", n);
  9. while (n<=20)
  10. {printf("%d ", n);
  11. n++;}
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5280KB
stdin
2
stdout
Introduci un numero positivo
Il numero è: 2
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20