第二次作业 计算机4 吕万鑫
Posted Y_*
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二次作业 计算机4 吕万鑫相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include<stdlib.h> int main() { int swap(int *m1,int *m2); int a,b; int *pointer_1,*pointer_2; scanf("%d,%d",&a,&b); pointer_1=&a;pointer_2=&b; if(a<b) swap(pointer_1,pointer_2); printf("\\n%d,%d\\n",*pointer_1,*pointer_2); system("pause"); } int swap(int *m1,int *m2) { int temp; temp=*m1; *m1=*m2; *m2=temp; }
以上是关于第二次作业 计算机4 吕万鑫的主要内容,如果未能解决你的问题,请参考以下文章