主程序
#include <stdio.h>
int main() {
int k;
scanf("%d", &k);
return 0;
}
主程序
package main
import "fmt"
func main() {
var n int
fmt.Scan(&n)
}
root@82da6559c1c0:/code# go run main.go
123x123
root@82da6559c1c0:/code# 123
bash: 123: command not found
root@82da6559c1c0:/code# gcc main.c -o main
root@82da6559c1c0:/code# ./main
123x123
root@82da6559c1c0:/code#
我想知道为什么在 Golang 中,123
被插入到我的 bash 命令中。但在 C 中它没有?有什么不同吗?(我知道标准输入中还有一些字符)
我想知道如何让 Golang 表现得像 C 一样?
慕少森
相关分类