list0509.cpp
来自「teach yourself C++ in 21 days 第五版」· C++ 代码 · 共 32 行
CPP
32 行
// Listing 5.9 - demonstrates inline functions
#include <iostream>
inline int Double(int);
int main()
{
int target;
using std::cout;
using std::cin;
using std::endl;
cout << "Enter a number to work with: ";
cin >> target;
cout << "\n";
target = Double(target);
cout << "Target: " << target << endl;
target = Double(target);
cout << "Target: " << target << endl;
target = Double(target);
cout << "Target: " << target << endl;
return 0;
}
int Double(int target)
{
return 2*target;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?