/****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS Code, Compile, Run and Debug online from anywhere in world. *******************************************************************************/ #include #include #include using namespace std; int main() { int c,d,p; cout << "Zadej prvni prvek rady : "; cin >> c; cout << "Zadej velikost kroku : "; cin >> d; p=0; while (p<50) { p++; cout << setw(5) << c; c=c+d; if (p % 10 == 0) cout << endl; } }