pr03004.cpp
来自「c++编程宝典源码及Quincy99编译器 是《标准C++编程宝典》电子工业出」· C++ 代码 · 共 46 行
CPP
46 行
////////////////////////////////////////
// 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 + =
减小字号Ctrl + -
显示快捷键?