//Programmer: Nazmus //Program: Yard to Feet conversion //Website: EasyProgramming.net #include <iostream>; using namespace std; void main() { int yard, feet; cout << "Please input number of yards: "; cin >> yard; feet = yard * 3; cout << yard << " yards equal to " << feet << " feet." << endl; system("pause"); }