Learn C++ Programming Language
This project is maintained by cugwhp
编程规范
// The first program - Hello World.
#include <iostream>
int main() //主函数
{
std::cout << "Hello World." << std::endl;
return 0;
}
Bad programming is easy. Even Dummies can learn it in 21days.
Good programming requires thought, but everyone can do it and
everyone can experience the extreme satisfaction that comes with it.
by Matthias Felleisen
返回主目录 | 下一章 C++语言特性