快速入门Go

Hello Golang

1
2
3
4
5
6
package main
import "fmt"

func main() {
fmt.Print("Hello Golang")
}

这是最简单的Go程序,可以看到我们处于main包,并且导入了fmt包,里面有基本的函数比如Print函数,用于输出到控制台。

Read more

快速入门C++

C++的输入与输出

头文件为,一般用cout流输出、cin流输入,他们都在标准名称空间std内,所以要加上using namespace std。

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

int main(){
//endl是回车符号的意思,也可以用cout << "HelloWorld!\n"实现同样的效果
cout << "HelloWorld!" << endl;
return 0;
}
Read more
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×