Advertisement
Mashudi

Validasi Usia

Oct 14th, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int x;
  7.         cout << "Masukkan Usia Anda = ";
  8.         cin >> x;
  9.             if(x <= 100)
  10.             {
  11.                 cout << "Usia Anda Valid";
  12.             }
  13.             else
  14.             {
  15.                 cout << "Usia Anda Tidak Valid";
  16.             }
  17.         cout << "\n";
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement