题解 1989: 奇数个数

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

筛选

1989题解方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[1000]; int i,sum=0; gets(a); for(i=0;a[i]!=&#39;\……

1989: 奇数个数

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai……

奇数个数(C++)

摘要:```c++ #include #include #include #include #include #include using namespace std; int ……

计算奇数个数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string s;    int t,cnt=0;  ……

奇数个数的巧妙用法

摘要:解题思路:这里有个很关键的东西就是%n,这个东西可以记录输入数字的个数,因此方便遍历每一位数。注意事项:参#include<stdio.h>int main(){    int a;     int ……

奇数个数简单利用字符串

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100],i,count=0; gets(str); fo……

1989: 奇数个数

摘要:用字符串保存起来遍历。#include <bits/stdc++.h> using namespace std; int main(){     string s;     cin >> ……

C语言代码,简单易懂

摘要:解题思路:一个穷举法注意事项:因为是字符串,注意要有数字要有单引号。参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main……