C++ fundamentals through coding exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

614 B

1 for-lause

Tehtävä:

Tee ohjelma, joka kysyy käyttäjältä kokonaisluvun n (n>0) ja tulostaa monitorille luvut 1,2,3..n allekkain. Tee ohjelma käyttäen for-lausetta.

Example output:

Anna kokonaisluku:2
1
2

Vastaus:

#include <iostream>
using namespace std;
int main() {
int n;
cout << "Anna kokonaisluku:";
cin >> n;
if (cin.fail()) {
cerr << "Syötä luku" << endl;
exit(1);
}
if (n<=0) {
cerr << "Luku ei voi olla 0 tai pienempi" << endl;
exit(1);
} else {
for (int i=1; i<n+1; i++) {
cout << i << endl;
}
}
return 0;
}