intro8.cpp
来自「hello everybody. good lucky to you」· C++ 代码 · 共 15 行
CPP
15 行
//INTRO8.CPP--Example from Chapter 3, " An Introduction to C++"
#include <iostream.h>
int main()
{
int val = 1;
cout << "\nval is " << val++ << " and then post-incremented\n";
cout << "val is now " << val << "\n";
cout << "val is pre-incremented to " << ++val << '\n';
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?