2017年2月10日
摘要: #include<stdio.h>int divide(int a,int b,int *result);int main(){ int a=5,b=2; int c; if(divide(a,b,&c)) { printf("%d",c); } return 0;}int divide(int a 阅读全文
posted @ 2017-02-10 22:08 hanlulu 阅读(97) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>void minmax(int a[],int len,int *min ,int *max);int main(){ int a[]={1,2,3,4,5,6,7,8,2,4,1,6,8,2,78,2,4,54,4,5,4,61,5,58,55,}; int mi 阅读全文
posted @ 2017-02-10 21:03 hanlulu 阅读(100) 评论(0) 推荐(0) 编辑