摘要:
1-1.函数简单调用 1 #include 2 #include 3 #include 4 int Move(); 5 int Bulid(); 6 int Paint(); 7 int main () 8 { 9 Move();10 Bulid();11 Paint();1... 阅读全文
posted @ 2015-12-16 17:42
dire
阅读(493)
评论(0)
推荐(0)
摘要:
gets(字符串数组) 用来接收字符串数组 等同于 scanf("%s",字符串数组名) 需要说的一点是 字符串的数组名 就表示数组的第一个元素的地址 所以加不加&取地址符号都是一样的puts(字符串数组)用来输出字符串数组 等同于 printf("%s\n",字符串数组名) 阅读全文
posted @ 2015-12-16 04:05
dire
阅读(156)
评论(0)
推荐(0)