Tuesday, October 13, 2015

C++ NOMOR 2

  1. Buatlah algoritma dan program untuk menghitung nilai ung dalam bentuk dollar, yen, peso. Adapun inputannya adalah rupiah dengan rumus:
Dollar = rupiah/8000
Yen = rupiah/4000

Peso = rupiah/2500

Jawab :

#include <iostream>
#include <conio.h>
using namespace std;
main()
{
      float R, DR = 8000, YR = 4000, PR = 2500, D, Y, P;
     cout<<"Rupiah =";
     cin>>R;
     D = R/DR;
     Y = R/YR;
     P = R/PR; 
      cout<<"\n++++++++++++++Hasil++++++++++++++\n";
      cout<<"\nDollar ="<<D;
      cout<<"\nYen ="<<Y;
      cout<<"\nPeso ="<<P;    
     getch();
    }  


No comments:

Post a Comment