diff --git "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/2.go\345\237\272\347\241\200\346\225\260\346\215\256\347\261\273\345\236\213/type.json" "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/2.go\345\237\272\347\241\200\346\225\260\346\215\256\347\261\273\345\236\213/type.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab758eb7abaa76af9dc08f52c404349ac7dbd5fd --- /dev/null +++ "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/2.go\345\237\272\347\241\200\346\225\260\346\215\256\347\261\273\345\236\213/type.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "dengmengmian", + "source": "type.md", + "notebook_enable": false +} \ No newline at end of file diff --git "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/2.go\345\237\272\347\241\200\346\225\260\346\215\256\347\261\273\345\236\213/type.md" "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/2.go\345\237\272\347\241\200\346\225\260\346\215\256\347\261\273\345\236\213/type.md" new file mode 100644 index 0000000000000000000000000000000000000000..0430df2260e284587f037475a6383c8067bf07b6 --- /dev/null +++ "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/2.go\345\237\272\347\241\200\346\225\260\346\215\256\347\261\273\345\236\213/type.md" @@ -0,0 +1,20 @@ +# 基础数类型 + 以下不属于 Go 基础数据类型的是: + +## 答案 + +数组 + +## 选项 + +### A + +字符串 + +### B + +布尔 + +### C + +整形 diff --git "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/3.\345\276\252\347\216\257\344\270\216\346\235\241\344\273\266\345\210\244\346\226\255/ if.json" "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/3.\345\276\252\347\216\257\344\270\216\346\235\241\344\273\266\345\210\244\346\226\255/ if.json" new file mode 100644 index 0000000000000000000000000000000000000000..d509f36439a00161ed8b860d4335d4350ef3cc5c --- /dev/null +++ "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/3.\345\276\252\347\216\257\344\270\216\346\235\241\344\273\266\345\210\244\346\226\255/ if.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "dengmengmian", + "source": "if.md", + "notebook_enable": false +} \ No newline at end of file diff --git "a/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/3.\345\276\252\347\216\257\344\270\216\346\235\241\344\273\266\345\210\244\346\226\255/if.md" "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/3.\345\276\252\347\216\257\344\270\216\346\235\241\344\273\266\345\210\244\346\226\255/if.md" new file mode 100644 index 0000000000000000000000000000000000000000..ce03b82cde207e7bd16273a117a6eccfa1e4821a --- /dev/null +++ "b/data/1.Go\350\257\255\350\250\200\345\210\235\351\230\266/2.\345\210\235\347\252\245\351\227\250\345\276\204/3.\345\276\252\347\216\257\344\270\216\346\235\241\344\273\266\345\210\244\346\226\255/if.md" @@ -0,0 +1,20 @@ +# 循环 +关于循环语句,下面说法正确的是: + +## 答案 + +for循环支持continue和break来控制循环 + +## 选项 + +### A + +关键字for的基本使用方法与C/C++中没有任何差异 + +### B + +循环语句既支持for关键字,也支持while和do-while + +### C + +Go 支持三目运算简化 if 语句 \ No newline at end of file