摘要:
LiLiSunZhangZhabgSunLiSunZhangLiResult Li:4Zhang:2 Sun:3 Process exited after 47.39 seconds with return value 0请按任意键继续. . . 例9.4 The order is: 10110 S 阅读全文
摘要:
void swap(int *a,int *b) //定义函数 { int t; //输入一个整型t t=*a; *a=*b; *b=t; //交换 *a,*b } int main() //主函数 { int m,n; //输入整型 m n int *p1,*p2;// 输入两个指针变量 scanf... 阅读全文
摘要:
# include //头文件 void swap(int *a,int *b) //定义函数 { int t; //输入一个整型t t=*a; *a=*b; *b=t; //交换 *a,*b } int main() //主函数 { int m,n; //输入整型 m n int *p1,*p2;... 阅读全文