Skip to main content
Search
Search This Blog
Kabeer Mukhi
In this Blog you will find tips and tricks related to Technology And Programming.
Home
Contact
Moreā¦
About
Home
Contact
About
Home
Contact
About
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
Labels
C++
October 13, 2018
Program to Convert the given meters into centimeters in C++
#include <iostream>
#include<conio.h>
using namespace std;
int main()
{
float in,on;
cout << "Enter Meters : ";
cin>>in;
on=in*100;
cout<<endl<<in<<" Meters == "<<on<<" Centimeters";
getch();
return 0;
}
Output :
You Can Also Download This Program From Here
Download Executable From Here
Comments
Popular Posts
November 09, 2018
Program To Find Minimum of the given two number in C++
June 03, 2018
#8 C++ Pattern
Comments
Post a Comment