摘要: #include <stdio.h>#include <stdlib.h>//指针=地址/*int main(){ int juHuaTai = 10; int meiGuiTai = 5; printf("%d \n",juHuaTai); printf("%d \n",meiGuiTai); / 阅读全文
posted @ 2020-02-18 14:42 _魑魅魍魉 阅读(91) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> void initScores(int *data, int size){ for (int i = 0; i < size; i++) { /* code */ printf("请输入第%d个数据 \n",i+1); sc 阅读全文
posted @ 2020-02-18 14:40 _魑魅魍魉 阅读(81) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> void initScores(int data[], int size){ for (int i = 0; i < size; i++) { /* code */ printf("请输入第%d个数据 \n",i+1); s 阅读全文
posted @ 2020-02-18 14:34 _魑魅魍魉 阅读(126) 评论(0) 推荐(0)