Advertisement
Guest User

OperasiAlgoritmaABC.cpp

a guest
Jan 23rd, 2018
51
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.  
  3. using namespace std ;
  4.  
  5. int main (){
  6.     //Operasi Algoritma Modulus
  7.     cout<<"                      Iman Nurohman"<<endl;
  8.     cout<<"                         X RPL 1"<<endl ;
  9.     //Pendeklarasian
  10.     int a = 14 ;
  11.     //Proses Program
  12.     cout<<endl;
  13.     cout<<a<< " % " <<2<< " = " <<a%2<<endl;
  14.     cout<<a<< " % " <<3<< " = " <<a%3<<endl;
  15.     cout<<a<< " % " <<4<< " = " <<a%4<<endl;
  16.  
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement