nBuat algoritma dan program untuk menghitung konversi dari m ke cm dan inchi !
nAnalisis :
ØInput : misalkan m (mewakili meter)
ØProses : 1 meter = 100
cm
Ø 1 inci = 2.54 cm
Ø cm = m *100
Ø inci = m*100/ 2.54
ØOutput : tulis (cm, inci)
JAWABAN :
DENGAN PROGRAM C++
#include <iostream>
#include <iostream>
#include <conio.h>
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 m,cm;
float inchi;
cout<<"ALGORITMA PEMRODRAMAN"<<endl;
cout<<"ukuran dalam bentuk meter ";
cin>>m;
cm=m*100;
cout<<"konversi m ke cm "<<cm<<endl;
inchi=(m*100)/2.54;
cout<<"konversi m ke inchi "<<inchi;
getch();
}
DENGAN RAPTOR
0 komentar:
Posting Komentar