Kali ini saya akan memposting program merepresentasikan bilangan melalui c++ dan flowchart.Berikut c++nya :
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int m,n,q,r;
cout<<"Masukin m : ";
cin>>m;
cout<<"Masukin n : ";
cin>>n;
if(n<m){
q=m/n;
r=m%n;
cout<<m<<"="<<q<<"*"<<n<<"+"<<r<<endl;
}
else
cout<<"N harus lebih kecil dari M";
return 0;
}
Hasilnya adalah..........
SELAMAT MENCOBA
0 komentar:
Posting Komentar