Senin, 20 Mei 2013

OPERATOR LOGIKA ( MODUL 4-2 )

VIDEO PROGRAM


SOURCE CODE

// Modul4-2.cpp : Defines the entry point for the console application.
//
/*Nama : Royan Rodiana
  NRP  : 49013031
  =======================================*/
#include "stdafx.h"// adalah file, yang dihasilkan oleh Microsoft Visual Studio IDE
#include<iostream>//untuk mengimplementasikan input/output
using namespace std;//namespace std adalah deklarasi library standar C++

int _tmain(int argc, _TCHAR* argv[])//fungsi utama
{
cout<<"OPERASI OPERATTOR LOGIKA";//cout untuk menampilkan data output ke layar

cout<<"\n tabel kebenran operator AND\n";
//operator And kedua2nya harus terpenuhi/true
cout<<"1 && 1 = "<<(1 && 1)<<endl;//hasilnya 1
cout<<"1 && 0 = "<<(1 && 0)<<endl;//hasilnya 0
cout<<"0 && 1 = "<<(0 && 1)<<endl;//hasilnya 0
cout<<"0 && 0 = "<<(0 && 0)<<endl;//hasilnya 0

cout<<"\n tabel kebenran operator OR\n";
//operator or hasil akan true jika salah satu terpenuhi
cout<<"1 || 1 = "<<(1 || 1)<<endl;//hasilnya 1
cout<<"1 || 0 = "<<(1 || 0)<<endl;//hasilnya 1
cout<<"0 || 1 = "<<(0 || 1)<<endl;//hasilnya 1
cout<<"0 || 0 = "<<(0 || 0)<<endl;//hasilnya 0

cout<<"\nTabel Kebenaran operator NOT\n";
cout<<"!1 = "<<!1<<endl;//hasilnya 0 karena opeartor negasi
cout<<"!0 = "<<!0<<endl;//hasilnya 1

system("pause");//untuk menghentikan program supaya tidak langsung keluar

return 0;//nilai balikan 0 /keluar program
}


OUTPUT

0 komentar:

Posting Komentar