This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Selasa, 30 Juni 2015

program menghitung jumlah pecahan

#include <iostream>using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) {    float p1,p2,a1,b1,a2,b2;    float jumlah,kurang,kali,bagi;    cout<<"menghitung jumlah pecahan"<<endl;    cout<<"masukkan...

program mencari titik tengah

#include <iostream> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) {     double a,b,c;     cout<<"mencari titik tengah diantaradua titik"<<endl;     cout<<"titik a=";     cin>>a;    ...

program tukar nilai bilangan

 #include <iostream>using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) {    int a,b,c,d;    cout<<">>>>>>>>>pertukaran nilai bilangan<<<<<<<<< \n";    cout<<"\tnilai...

Rabu, 18 Februari 2015

MEMASUKKAN DATA NILAI TERTINGGI TERENDAH DAN RATA-RATA

using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) {    int x[100],n,max,min,i;    double a,b;    cout<<"Masukkan Banyaknya Data : ";cin>>n;    for (i=0;i<n;i++)    {cout<<"Masukan Nilai "...

INPUT DATA NILAI MAHASISWA

#include <iostream> #include <conio.h> #include <string> #include <fstream> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ main(int argc, char *argv[]) { ofstream file_nilai; int n,m; cout<<"\tdata mahasiswa\n"; cout<<"------------------------------------\n"; cout<<"masukkan...