摘要: 6-1 求数组中同为5和7的倍数的整数的个数 int Count_Digit(int a[],int N) { int cnt = 0; for(int i = 0; i< N ; i++) { if( a[i] % 35 == 0) cnt ++; } return cnt; } 7-2 求最大值 阅读全文
posted @ 2024-04-19 16:13 Icys 阅读(41) 评论(0) 推荐(0) 编辑