Tuesday, November 20, 2012

Tutorial mengenai TIpe Data pada C++


/*Nama: Izmatul Farihah
  NIM : 49012057*/

#include <iostream>

using namespace std;

int main (void){

cout<<"=========================================="<<endl;
cout<<"\t\tBelajar Tipe Data"<<endl;
cout<<"=========================================="<<endl;

int x=10;
float y=3.14;
double z=3.14567;
char huruf='A';
char teks[20]="Ini adalah String";

cout<<"Ini adalah contoh variabel tipe data Integer: "<<x<<endl;
cout<<"Ini adalah contoh variabel tipe data float: "<<y<<endl;
cout<<"Ini adalah contoh variabel tipe data Double: "<<z<<endl;
cout<<"Ini adalah contoh variabel tipe data char: "<<huruf<<endl;
cout<<"Ini adalah contoh variabel tipe data String: "<<teks<<endl;

system("pause");
return 0;
}

No comments:

Post a Comment