📄 pr03004.cpp
字号:
////////////////////////////////////////
// File Name: pr03004.cpp
////////////////////////////////////////
#include <iostream>
// Prototypes
int WidthInFeet();
int WidthInInches(int feet);
////////////////////////////////////////
// The main() function.
////////////////////////////////////////
int main()
{
// Initialize variables by calling functions.
int feet = WidthInFeet();
int wd = WidthInInches(feet);
// Display results.
std::cout << "Width in inches = " << wd;
return 0;
}
////////////////////////////////////////
// Read width in feet
////////////////////////////////////////
int WidthInFeet()
{
int feet;
std::cout << "Enter width in feet: ";
std::cin >> feet;
return feet;
}
////////////////////////////////////////
// Compute width in inches
////////////////////////////////////////
int WidthInInches(int feet)
{
return feet * 12;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -