Bab 1 No 7

Permasalahan :

Ulangi untuk kasus no 6. Apabila banyak beras tidak diketahui, berapa kg maksimal
beras yang dapat dibeli ?
|

C++ :

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
int x,y,z;
x=20000;y=5500;
z=x/y;
cout<<"UANG DARI IBU : Rp.20.000\n";
cout<<"ADEK MEMBELI BERAS DENGAN HARGA Rp.5.500 per Kg\n";
cout<<"Kg BERAS YANG DAPAT DI BELI : ";

cout<<z<<" Kg"<<endl;

    system("PAUSE");
    return EXIT_SUCCESS;
}

Output :



Raptor :




Share this

Related Posts

Previous
Next Post »