03 2017 档案
摘要:老师 我上课时候 单词打错了 所以有那么一点小瑕疵 一直没对 错误提示没看懂
阅读全文
摘要:#include<stdio.h>#include<stdlib.h>void swap(int *p,int *q){ int *m; *m=*p; *p=*q; *q=*m; } main(){ int a,b; scanf("%d,%d",&a,&b); swap(&a,&b); printf
阅读全文
摘要:#include<stdio.h> int main() { int swap(int *p,int *q); int a,b; scanf("%d%d",&a,&b); int *p,*q; p=&a; q=&b; swap(p,q); printf("%d %d\n",*p,*q); retur
阅读全文
摘要:#include<stdio.h> int main() { int a[12]={1,2,3,4,5,6,7,8,9,10,11,12};//定义一个12个的数组 我是2016024258,8+4=2,所以12 int*p;//定义指针 p=a;按照书上的运行不出来,就这么做了 int j;//定
阅读全文

浙公网安备 33010602011771号