function.cpp
来自「VC源代码大全(精华版)」· C++ 代码 · 共 17 行
CPP
17 行
#include <iostream.h>
void MyFunction (int, int);
void main (void)
{
int x;
int y;
MyFunction (x = 3, y = x * 4);
}
void MyFunction (int x, int y)
{
cout << "x = " << x << endl;
cout << "y = " << y << endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?