Yang ada di bawah ini adalah contoh dari variabel
"PROGRAM KONVERSI NILAI MAHASISWA"
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout<<"PROGRAM KONVERSI NILAI MAHASISWA\n";
cout<<" NAMA = .................................\n";
cout<<" NPM = .................................\n";
float nilai;
char huruf;
cout<<" MASUKKAN NILAI ANDA: "; cin>>nilai;
if (nilai < 60) huruf ='D';
else if ( nilai < 70) huruf = 'C';
else if ( nilai < 80) huruf = 'B';
else huruf ='A';
cout<<"nilai huruf anda = "<<huruf<<"\n";
cout<<"\n";
cout<<"\n";
system("PAUSE");
return EXIT_SUCCESS;
}