eg2.cpp
来自「C++课程更学习...对于初学者很有好出」· C++ 代码 · 共 15 行
CPP
15 行
// eg2.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "point.h"
#include "line.h"
int main(int argc, char* argv[])
{
CLine lnOne(10, 20, 50, 60);
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?