Kasus
2.1.
Hitunglah
jumlah dari 3 buah bilangan bulat!
Analisis :
Analisis :
Input
: misalkan a, b, c semua integer
Proses
: jumlah ß
a + b + c
Output
: tulis (jumlah)
1. Algoritma
- Deklarasi
. a,b,c : integer {input}
. jumlah : integer {output}
- Deskripsi
. read(a,b,c)
. jumlah = a+b+c
. write(jumlah)
- Deklarasi
. a,b,c : integer {input}
. jumlah : integer {output}
- Deskripsi
. read(a,b,c)
. jumlah = a+b+c
. write(jumlah)
2. Program
dan Flowchart
#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,jumlah;
cout<<"Input Angka Pertama :";cin>>a;
cout<<"Input Angka Kedua : ";cin>>b;
cout<<"Input Angka Ketiga : ";cin>>c;
jumlah=a*b*c;
cout<<jumlah;
return 0;
}
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,jumlah;
cout<<"Input Angka Pertama :";cin>>a;
cout<<"Input Angka Kedua : ";cin>>b;
cout<<"Input Angka Ketiga : ";cin>>c;
jumlah=a*b*c;
cout<<jumlah;
return 0;
}
Tidak ada komentar:
Posting Komentar