题解 2006: 寻找奇整数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

寻找奇整数 (C++代码)

摘要:解题思路:把原题中偶数都改成“-1”,然后直接查询给出的数字在列表中的位置参考代码:#include <iostream> using namespace std; int main() ……

2006: 寻找奇整数

摘要:解题思路:注意事项:符合其中一个条件就break参考代码:#include <stdio.h> #define LEN 15 int main() { int exist=1,num,arr[……

寻找奇整数

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     int arr[15] = { 3,7,5,13,25,45,78,23,8,33,9,19,2……