Computer Science, asked by didriksharoy3, 3 months ago

write a program to imput the amount of rupees and praise and print the amount in praise.​


himanshu2006vps: hey I mean which programming language java,c,c++ or python
didriksharoy3: c++
himanshu2006vps: ok
didriksharoy3: hm
didriksharoy3: tell me fast
himanshu2006vps: are ruko
himanshu2006vps: ho gaya
himanshu2006vps: time lagta hai
himanshu2006vps: check bhi toh karna padta hai
didriksharoy3: haa

Answers

Answered by himanshu2006vps
1

#include <iostream>

using namespace std;

int main()

{

double rupees,paisa;

cout<<"Enter Total rupees: ";

cin>>rupees ;

paisa = rupees * 100;

cout<<"Converted Rs in paise = "<<paisa;

return 0;

}

// multiplied with 100 because 1 rupees = 100paise

Similar questions