C++ Primer Plus 学习笔记

先开个坑 后续持续施工~

1
2
3
4
5
6
7
8
9
#include <iostream>

int main(void)
{
using namespance std;
cout << "Hello World!"

return 0;
}