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

OJ 注意事项

时间:2014-12-26 16:27:01      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

1,检查指针是否有效,即是否为NULL

 1 void OutputMaxAndMin(int * pInputInteger, int InputNum, int * pMaxValue, int * pMaxNum, int * pMinValue, int * pMinNum)
 2 {
 3     /*在这里实现功能*/
 4         int i = 0;
 5     int num = 0;
 6     if (InputNum <= 0 || pInputInteger == NULL)
 7     {
 8         *pMaxNum =0;
 9         *pMinNum = 0;
10         *pMaxValue = 0;
11         *pMinValue = 0;
12         return;
13     }
14 
15     .....
16 }

 

OJ 注意事项

标签:

原文地址:http://www.cnblogs.com/wanghui390/p/4186954.html

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