cpp_primer_plus/ch03/01.cpp
2022-08-23 23:01:08 +01:00

13 lines
302 B
C++

# include <iostream>
using namespace std;
const int feet2inch = 12;
int main(){
int height;
cout << "Enter Your Height (feet): ";
cin >> height;
int inch = height / feet2inch;
int feet = height % feet2inch;
cout << "Your Height is " << inch << " inch " << feet << " feet" << endl;
return 0;
}