Jumat, 02 September 2016

Program Penggunaan Cout Pada C++


#include <iostream.h>
#include <conio.h>

main()
{
cout<<endl;
cout<<"\t\t Hallo Apa Kabar???\n\n";
cout<<" Selamat Datang Di Lab 5 \n";
cout<<" STMIK AMIKOM Yogyakarta\n";

getch();
}

Output :


Program Penggunaan Printf Pada C


#include <stdio.h>
#include <conio.h>

main()
{
printf("\t\t Hallo Apa Kabar???\n\n");
printf(" Selamat Datang Di Lab 5 \n");
printf(" STMIK AMIKOM Yogyakarta\n");

getch();
}

Output :


Contoh Program Nama Dengan C++


#include <iostream.h>
#include <conio.h>

main()
{
cout<<"Nama : Pungki Ana Dewi"<<endl;
cout<<"NIM : 14.11.7751"<<endl;

getch();
}

Output :


Contoh Program Nama Dengan C


#include <stdio.h>
#include <conio.h>

main()
{
printf("Nama : Pungki Ana Dewi\n");
printf("NIM : 14.11.7751\n");

getch();
}

Output :


Program Harga Dengan C++


#include <iostream.h>
#include <conio.h>

int main()
{
int jumlah;
float harga_per_satuan, harga_total;
jumlah = 50;
harga_per_satuan = 15.7;

harga_total = jumlah * harga_per_satuan;

cout<<"Jumlah = "<<jumlah<<endl;
cout<<"Harga Per Satuan = "<<harga_per_satuan<<endl;
cout<<"Harga Total = "<<harga_total<<endl;

getch();
}

Output :


Program Harga Dengan C


#include <stdio.h>
#include <conio.h>

main()
{
int jumlah;
float harga_per_satuan, harga_total;
jumlah = 50;
harga_per_satuan = 15.7;

harga_total = jumlah * harga_per_satuan;

printf("Jumlah = %d\n", jumlah);
printf("Harga Per Satuan = %.1f\n", harga_per_satuan);
printf("Harga Total = %3.0f\n", harga_total);

getch();
}

Output :


Program Bilangan Pecahan Dengan C++


#include <iostream.h>
#include <conio.h>

main()
{
float a = 8.50, b = 257.23;

cout<<endl<<"Bilangan A = "<<a<<endl;
cout<<"Bilangan B = "<<b<<endl;
getch();
}

Output :


Program Bilangan Pecahan Dengan C


#include <stdio.h>
#include <conio.h>

main()
{
float a = 8.50, b = 257.23;

printf("\nBilangan A = %4.1f \n", a);
printf("Bilangan B = %4.3f \n", b);
getch();
}

Output :


Program Penentu Lebar Field


#include <stdio.h>
#include <conio.h>

main()
{
printf("\n| %-10s | %-20s | %7s |\n", "NIM","Nama Mahasiswa","Nilai");
printf("| %-10s | %-20s | %7.1f |\n", "14.11.1234","Joko",90.5);
printf("| %-10s | %-20s | %7.1f |\n", "14.11.1235","Susi",85.5);
getch();
}

Output :


Operator Relasi Logika Pada C++


#include<iostream.h>
using namespace std;

int main()
{
int a, b, c;

//inisialisasi variabel
a = 2;
b = 8;

int j, k, l , m;
j = a>b;
k = a<b;
l = a==b;
m = a!=b;


cout<<" \n Diketahui : \n";
cout<<" a > b : "<<j<<endl;
cout<<" a < b : "<<k<<endl;
cout<<" a == b : "<<l<<endl;
cout<<" a != b : "<<m<<endl;

c= a == b;
cout<<" c : "<<c<<endl;
cout<<" !c : "<<!c<<endl;

}

Output :


Operator Relasi Logika Pada C


#include<stdio.h>
#include<conio.h>

main()
{
int a, b, c;

//inisialisasi variabel
a = 2;
b = 8;

printf(" \n Diketahui : \n");
printf(" a > b : %d\n", a > b);
printf(" a < b : %d\n", a < b);
printf(" a == b : %d\n", a == b);
printf(" a != b : %d\n", a != b);

c= a == b;
printf(" c : %d\n", c);
printf(" !c : %d", !c);

getch();
}

Output :


Operator Unary Pada C++


#include<iostream.h>
#include<conio.h>

main()
{
int x;
float y;

x = +5;
y = -2.12;

cout<<"\n Nilai x : "<<x;
cout<<"\n Nilai y : "<<y<<endl;

x=-x; //Merubah Nilai Menjadi Negatif
y=-y;

cout<<"\n Nilai x : "<<x;
cout<<"\n Nilai y : "<<y<<endl;

//Operasi increment, x = x + 1;
x++;
//Operasi decrement, y = y - 1;
y--;

cout<<"\n Nilai x : "<<x<<" y : "<<y;

getch();
}

Output :


Operator Unary Pada C


#include<stdio.h>
#include<conio.h>

main()
{
int x;
float y;

x = +5;
y = -2.12;

printf("\n Nilai x : %i",x);
printf("\n Nilai y : %0.2f\n",y);

x=-x; //Merubah Nilai Menjadi Negatif
y=-y;

printf("\n Nilai x : %i",x);
printf("\n Nilai y : %0.2f\n",y);

//Operasi increment, x = x + 1;
x++;
//Operasi decrement, y = y - 1;
y--;

printf("\n Nilai x : %i y : %.2f\n",x,y);

getch();
}

Output :



Operator Binary Pada C++


#include<iostream.h>
#include<conio.h>

main()
{
int x =10, y = 3;
int z, p;

z = x + y;
p = z - y;

cout<<" Perhitungan Binary \n";
cout<<x<<" + "<<y<< " = "<<z<<endl;
cout<<z<<" - "<<y<< " = "<<p<<endl;
getch();
}

Output :


Operator Binary Pada C


#include<stdio.h>
#include<conio.h>

main()
{
int x =10, y = 3;
int z, p;

z = x + y;
p = z - y;

printf(" Perhitungan Binary \n");
printf(" %i + %i = %i \n", x,y,z);
printf(" %i - %i = %i \n", z,y,p);

getch();
}

Output : 


Operator Logika Pada C++


#include<iostream.h>

main()
{
char a[10]="Logika";
char  b, c, d;

b='A';
c='N';
d='D';

int j = 1 && 1 ;
int k = 1 && 0 ;
int l = 0 && 0 ;
int m = 0 && 1 ;

cout<<endl<<a;
cout<<b<<c<<d<<endl;
cout<<"1 && 1 = "<<j<<endl;
cout<<"1 && 0 = "<<k<<endl;
cout<<"0 && 0 = "<<l<<endl;
cout<<"0 && 1 = "<<m<<endl;

}

Output :


Operator Logika Pada Bahasa C


#include<stdio.h>
#include<conio.h>

main()
{
char a[10]="Logika";
char  b, c, d;

b='A';
c='N';
d='D';

printf("\n %s ", a);
printf(" %c%c%c \n",b,c,d);
printf("1 && 1 = %i\n",1 && 1);
printf("1 && 0 = %i\n",1 && 0);
printf("0 && 0 = %i\n",0 && 0);
printf("0 && 1 = %i\n",0 && 1);

getch();
}

Output :


Program Menghitung Luas Lingkaran Dengan Bahasa C++


     Berikut program menghitung luas lingkaran dengan menggunakan bahasa c++ :

#include <iostream.h>
#include <conio.h>
#define baris "\n"

int main()
{

/*====================================
Program Menghitung Luas Lingkaran
======================================*/

const float pi = 3.14;
float r, Luas;
r = 5.0;

Luas = pi * r * r;
cout<<"Luas Lingkaran : "<<Luas;
cout<<baris;

getch();
}

Output :



Program Menghitung Luas Lingkaran Menggunakan Bahasa C


     Berikut program menghitung luas lingkaran dengan menggunakan bahasa c : 

#include <stdio.h>
#include <conio.h>
#define baris "\n"

int main()
{

/*====================================
Program Menghitung Luas Lingkaran
======================================*/

const float pi = 3.14;
float r, Luas;
r = 5.0;

Luas = pi * r * r;
printf("Luas Lingkaran : %3.1f", Luas);
printf(baris);

getch();
}

Output :


Perintah Printf Pada Bahasa C


         Perintah "printf" pada bahasa c digunakan untuk menampilkan kalimat ataupun kata yang diinginkan, berikut contoh program "printf" : 

#include<stdio.h>
#include<conio.h>

main()
{
int a = 5;
char b = 'E';
printf("\n %c Merupakan Abjad Yang Ke - %d",b,a);
getch();
}

Output :



Perintah Cout Pada C++


          Perintah "cout" pada bahasa c++ berfungsi untuk menampilkan kalimat yang telah diinginkan, berikut contoh program penggunaan "cout" pada c++ :

#include<iostream.h>

main()
{
int a = 5;
char b = 'E';

cout<<endl<<b<<" Merupakan Abjad Yang Ke - "<<a<<endl;
}

Output :



Program HELLO WORLD


Program "Hello World" dengan menggunakan bahasa c, yaitu :

#include <stdio.h>

main ()
{
printf(" Hello World !!! ");

getch();
}

Output :



Program "Hello World" dengan menggunakan bahasa c++, yaitu :

#include <iostream.h>
using namespace std;

int main()
{
cout<<" Hello World !!! \n";
}

Output :