Advertisement
satriafu5710

Beri Tanda Bintang Kelipatan 5 c++

Dec 9th, 2020
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.    
  6.     int a ;
  7.     cout << "\n\t Memberi Bintang Pada Kelipatan 5 \n " ;
  8.    
  9.     cout << "\n Masukkan Batas Nilai : "; cin >> a ;
  10.     cout << endl ;
  11.    
  12.     for ( int i = 1; i <= a; i++ ) {
  13.    
  14.         if ( i % 5 == 0 ) {
  15.            
  16.             cout << " * "  ;
  17.         }
  18.        
  19.         else {
  20.             cout << i << " ";
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement