A simple program to ask the user to give us dollar money value and convert it into Philippine peso equivalent using C++ programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
#include <iostream>
#include <iomanip>
double us_peso(double us_value)
{
return(us_value * 53.50);
}
int main()
{
double us_dollar=0.00;
double compute=0.00;
std::cout <<"\n\n";
std::cout <<"\tUS Dollar To Philippine Peso Using Function in C++";
std::cout <<"\n\n";
std::cout <<"\tGive Value in US Dollar : ";
std::cin >> us_dollar;
compute = us_peso(us_dollar);
std::cout <<"\n\n";
std::cout << std::fixed << std::setprecision(2)
<< "\tThe equivaluent of US Dollar $" <<us_dollar <<
" to Philippine Peso is PHP " << compute;
std::cout <<"\n\n";
std::cout <<"\tEnd of Program";
std::cout <<"\n\n";
}