Senin, 22 Oktober 2012

C++ IF

# include <iostream.h>
# include <conio.h>

void main ()
{
    int usia;

   cout << " Berapa usia mu ? ";
   cin >> usia;

   if (usia < 17)
       cout << " Anda tidak boleh menonton :( " << endl;
   else
       cout << " Selamat menonton ;) " << endl;

   getch ()  ;
  
}

0 comments:

Posting Komentar