Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

// Online C++ compiler to run C++ program online

#include <iostream>

using namespace std;

int main() {

// Write C++ code here

float luas,panjang,lebar;

cout<<"PROGRAM C++ MENGHITUNG LUAS PERSEGI PANJANG"<<endl;

cout<<"-----------------------------------"<<endl;

cout<<"Masukan Panjang\t\t: ";

cin>>panjang;

cout<<"Masukan Lebar\t\t: ";

cin>>lebar;

luas=panjang*lebar;

cout<<"Luas Persegi Panjang\t: "<<luas<<endl;

return 0;

#include <iostream>

using namespace std;

int main() {

// Write C++ code here

int a=4;

int b=2;

int hasil = a+b;

cout << "jumlah = " << hasil;

return 0;

// Online C++ compiler to run C++ program online


#include <iostream>

using namespace std;

int main() {

// Write C++ code here

int a=4;

int b=3;

int hasil1 = a/b;

cout << "jumlah = " << hasil1 << "\n";

int c=4;

int d=3;

int hasil2 = a*b;

cout << "jumlah = " << hasil2;

return 0;

You might also like