Write a program in Basic to input the amount of money in rupees and convert and display it in US Dollars, and also in Euro. 1 US Dollar=Rs.69.3 , 1 Euro=Rs.77.6 delta ]
Answers
Answered by
1
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float: a, b, n;
cout<< " Enter money INR=";
cin>>"n";
a = n×0.0144;
b = n × 0.0128;
cout<<" dollars = "<<a ;
cout<<"Euro = "<<b;
getch ();
}
Similar questions
Math,
7 hours ago
Social Sciences,
7 hours ago
Geography,
7 hours ago
Math,
13 hours ago
Hindi,
8 months ago