第二次作业
Posted 我不信这名字有
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二次作业相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include<stdlib.h> int main() { void swap(int *p,int *q); int a,b; int *p,*q; scanf("%d ,%d",&a,&b); p=&a; q=&b; swap(p,q); printf("%d,%d",a,b); system("pause"); } swap(int *p,int *q) {int temp; temp=*p; *p=*q; *q=temp; } 按书上的改的,总结到底怎么写啊,求老师点拨
以上是关于第二次作业的主要内容,如果未能解决你的问题,请参考以下文章