Posted 2022-09-15Go8 minutes read (About 1127 words)快速入门GoHello Golang123456package mainimport "fmt"func main() { fmt.Print("Hello Golang")} 这是最简单的Go程序,可以看到我们处于main包,并且导入了fmt包,里面有基本的函数比如Print函数,用于输出到控制台。Read more
Posted 2020-09-03C++11 minutes read (About 1683 words)快速入门C++C++的输入与输出头文件为,一般用cout流输出、cin流输入,他们都在标准名称空间std内,所以要加上using namespace std。 12345678#include <iostream>using namespace std;int main(){ //endl是回车符号的意思,也可以用cout << "HelloWorld!\n"实现同样的效果 cout << "HelloWorld!" << endl; return 0;}Read more