Berlangganan

About Me


contoh 14

# include <iostream.h>
void main ()
{
    int m = 166;
    cout<<"(m>=0 && m<=150) -> "<<(m>=0 && m<=150)<<endl;
    cout<<"(m>=0 || m<=150) -> "<<(m>=0 || m<=150)<<endl;
}

output

(m>=0 && m<=150) -> 0

(m>=0 || m<=150) -> 1

0 Response to "contoh 14"

Post a Comment