跳转至

Object-oriented Programming--using c++

The First C++ Program

C++
1
2
3
4
5
6
7
8
#include<iostream>
using namespace std;

int main()
{
    cout << "Hello, World! I am " << 18 << " Today!" << endl;
    return 0;
}

最后更新: 2026年4月4日 01:35:32
创建日期: 2026年4月4日 01:35:32