注册 登录
编程论坛 C++教室

这个是什么意思呢

a181625133 发布于 2018-01-07 16:23, 1768 次点击
// myfirst.cpp -- displays a message

#include <iostream>                           // a PREPROCESSOR directive
int main()                                    // function header
{                                             // start of function body
    using namespace std;                      // make definitions visible
    cout << "Come up and C++ me some time.";  // message
    cout << endl;                             // start a new line
    cout << "You won't regret it!" << endl;   // more output
    cin.get();return 0;                       // terminate main()
}   
3 回复
#2
yangfrancis2018-01-09 11:39
右边就是解释
#3
a1816251332018-01-13 21:29
不懂????
#4
新人学习2018-01-16 13:01
去网上翻译吧.
1