摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 int cal(int *p) 5 { 6 if(*p < 5) 7 printf("%d\n",*p); 8 if(*p >=5 && *p < 15) 9 printf("%d\n",*p + 6); 10 阅读全文
posted @ 2021-01-06 22:44 8重8 阅读(76) 评论(0) 推荐(0)