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

自学习指针后,自己利用指针编写判断三个数的大小。

时间:2015-09-16 19:29:20      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

//自己把指针看懂后,编的的小程序,分享下小喜悦。
#import

int abc(*p1,t*p2,*p3)
{
    int temp=*p1;
    if (temp<*p2) {
        temp=*p2;
    }
    if (temp<*p3) {
        temp=*p3;
    }
    
    return temp;
}
    


int main(int argc, const char * argv[])
{

    @autoreleasepool {
        int *p1,*p2,*p3;
        int a,b,c;
        scanf("%d%d%d",&a,&b,&c);
        p1=&a;
        p2=&b;
        p3=&c;
        
        int temp=abc(p1,p2,p3);
        printf("%d",temp);
        
       
        
    }
    return 0;
}

自学习指针后,自己利用指针编写判断三个数的大小。

标签:

原文地址:http://www.cnblogs.com/ljwios/p/4813922.html

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