码迷,mamicode.com
首页 > 其他好文 > 详细

第二次作业

时间:2017-03-22 18:58:32      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:wap   swap   oid   技术   main   二次   lib   swa   scanf   

技术分享
#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; 
 }
 
 按书上的改的,总结到底怎么写啊,求老师点拨

 

第二次作业

标签:wap   swap   oid   技术   main   二次   lib   swa   scanf   

原文地址:http://www.cnblogs.com/lp1256--/p/6601081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!