Berlangganan

About Me


contoh 9

# include <iostream.h>

void main ()
{
    int m = 5, n =7;
    if(m == n) cout<<m<<"sama dengan "<<n<<endl;
    else if(m != n) cout<<m<<" tidak sama dengan "<<n<<endl;
    else if(m > n) cout<<m<<" lebih besar dari "<<n<<endl;
    else if(m < n) cout<<m<<" lebih kecil dari "<<n<<endl;
}

output

5 tidak sama dengan 7

0 Response to "contoh 9"

Post a Comment