Algoritma3.2

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> using namespace std; int main() { puts("================================="); puts(" Contoh Operator Perbandingan"); puts("================================="); float a, b, c, d; int x = 8, y = 4; cout << "Nilai x adalah = " << x << endl; cout << "Nilai y adalah = " << y << endl; /* Bernilai Sama Dengan */ a = (x == y); /* Bernilai Tidak Sama Dengan */ b = (x != y); /* Bernilai Lebih Besar Dari */ c = (x > y); /* Bernilai Lebih Kecil Dari */ d = (x < y); puts("================================="); cout << "Hasil dari x == y adalah " << a << endl; cout << "Hasil dari x != y adalah " << b << endl; cout << "Hasil dari x > y adalah " << c << endl; cout << "Hasil dari x < y adalah " << d << endl; puts("================================="); return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines