Advertisement
le_lukasz

Untitled

Apr 27th, 2021
534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int licznik = 1;
  8.     int dzielnik =3;
  9.     int liczba = dzielnik;
  10.     do
  11.     {
  12.         cout << licznik << ". : " << liczba << endl;
  13.         liczba = liczba +dzielnik;
  14.         licznik++;
  15.  
  16.     }while(licznik <= 100);
  17.  
  18.     return 0;
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement