1989: 奇数个数 摘要:用字符串保存起来遍历。#include <bits/stdc++.h> using namespace std; int main(){ string s; cin >> …… 题解列表 2022年02月27日 0 点赞 0 评论 92 浏览 评分:0.0
计算奇数个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; int t,cnt=0; …… 题解列表 2023年05月11日 0 点赞 0 评论 76 浏览 评分:0.0
1989: 奇数个数我看很多大佬都使用了数组长度函数strlen,我写个不使用的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int i; char c[100]={}; int ans=0; gets(c); for(i=0;c…… 题解列表 2022年07月19日 0 点赞 0 评论 71 浏览 评分:0.0
奇数个数-题解(Java代码) 摘要:import java.util.Scanner; public class Main { /** * @param args * T1989 */ publi…… 题解列表 2021年01月29日 0 点赞 0 评论 259 浏览 评分:0.0
奇数个数 (C语言代码) 摘要:解题思路:字符数组 -> int数组 -> 调用统计函数 ->输出结果注意事项:数组类型的转换参考代码:#include<string.h> #include<stdio.h> int Odd…… 题解列表 2019年03月10日 0 点赞 0 评论 706 浏览 评分:0.0
奇数个数-题解(C语言代码) 摘要:解题思路:注意事项:注意c初值为0;参考代码:#include <stdio.h>#include <string.h> int main(){ char a[100]; int i,b,…… 题解列表 2020年12月02日 0 点赞 0 评论 207 浏览 评分:0.0
C语言代码,简单易懂 摘要:解题思路:一个穷举法注意事项:因为是字符串,注意要有数字要有单引号。参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main…… 题解列表 2022年02月20日 0 点赞 0 评论 222 浏览 评分:0.0
奇数个数-题解(C语言代码) 摘要: #include "stdio.h" #include "string.h" int main() { char a[100]; int i,t=0,n; gets(a…… 题解列表 2020年02月17日 0 点赞 0 评论 348 浏览 评分:0.0
奇数个数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(void){ char a[1000]; int i,length,j=0; sc…… 题解列表 2020年08月31日 0 点赞 0 评论 251 浏览 评分:0.0
奇数个数简单利用字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100],i,count=0; gets(str); fo…… 题解列表 2022年07月19日 0 点赞 0 评论 97 浏览 评分:0.0