题解 1989: 奇数个数

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

筛选

1989: 奇数个数

摘要:解题思路:入门题一般定义一个长数组即可。比较字符数字-‘0’的ASCII码值注意事项:参考代码:#include <stdio.h> int main(){ char str[1000]; ……

奇数个数(C++)

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

奇数个数-题解(C语言代码)

摘要:解题思路:注意事项:注意c初值为0;参考代码:#include <stdio.h>#include <string.h> int main(){    char a[100];    int i,b,……

1989题解方法

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

1989: 奇数个数

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

奇数个数-题解(C语言代码)

摘要:解题思路:注意事项:除以二的数是偶数;参考代码:#include <stdio.h>#include <string.h>int main(){ char a[50]; scanf("%s",&a);……

奇数个数 (Java代码)

摘要:import java.util.Scanner;public class Main1 {         public static void main(String[] args) {     ……