Dev C++
source code :
#include <iostream>
using namespace std;
int tambahan (int a, int b, int c) {
int jumlah;
jumlah=a+b+c;
return jumlah;
}
int main () {
int jumlahbayangan;
jumlahbayangan=tambahan (1,2,3);
cout<<jumlahbayangan;
return 0;
}
outputnya :
2. Program penjumlahan (inputan lewat keyboard)
Dev C++
source code :
#include <iostream>
using namespace std;
void Tambah(int a, int b)
{
int c = 0;
int i = a;
if((a % 2) == 0)
i = a + 1;
while (i <= b)
{
c += i;
i +=2;
}
cout << "Hasil = " << c << endl;
}
int main()
{
int awal, akhir, hasil;
cout << "Awal = ";
cin >> awal;
cout << "Akhir = ";
cin >> akhir;
Tambah(awal, akhir);
getchar();
}
outputnya :
3. Program perkalian (input lewat keyboard)
Dev C++
source code :
#include <iostream>
#include <stdio.h>
#include <conio.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
float hasil(int a, int b);
int main(int argc, char** argv) {
int x,y;
float z;
cout<<"bilangan pertama : ";
cin>>x;
cout<<"bilangan kedua : ";
cin>>y;
z=hasil(x,y);
cout<<"hasil perkaliannya adalah : "<<z<<endl;
getch ();
}
float hasil(int a, int b){
return (a*b);
}
outputnya :
Tidak ada komentar:
Posting Komentar