BAB 1.7=>MENGHITUNG KG BERAS YANG BISA DI BELI MENGGUNAKAN C++ DAN RAPTOR

1.) 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;
}

 2.) RAPTOR

Share this

Related Posts

Previous
Next Post »