不用数组,容易理解(c语言代码) 摘要:#include<stdio.h> int main() { int n,k=0; scanf("%d",&n); while(n) { …… 题解列表 2021年11月04日 0 点赞 0 评论 327 浏览 评分:9.9
1989:不会的可以借鉴借鉴这个哦 摘要:解题思路:先定义一个字符串数组,求出字符串的长度(循环的范围),理解好题目的意思,求输入字符串中质数的个数。注意事项:质数的表示%2==1或者%2!=0参考代码:#include <stdio.h>#…… 题解列表 2022年02月16日 0 点赞 0 评论 211 浏览 评分:9.9
C语言代码,简单易懂 摘要:解题思路:一个穷举法注意事项:因为是字符串,注意要有数字要有单引号。参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main…… 题解列表 2022年02月20日 0 点赞 0 评论 222 浏览 评分:0.0
1989: 奇数个数 摘要:用字符串保存起来遍历。#include <bits/stdc++.h> using namespace std; int main(){ string s; cin >> …… 题解列表 2022年02月27日 0 点赞 0 评论 92 浏览 评分: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
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
将多位数拆解为单位数,善用整除和求余 摘要:解题思路:注意事项:参考代码:n=input()u=0##for _ in n:## print('_:',_)## if int(_)%2!=0:## u=u…… 题解列表 2022年10月24日 0 点赞 0 评论 90 浏览 评分:0.0
奇数个数的巧妙用法 摘要:解题思路:这里有个很关键的东西就是%n,这个东西可以记录输入数字的个数,因此方便遍历每一位数。注意事项:参#include<stdio.h>int main(){ int a; int …… 题解列表 2022年11月08日 0 点赞 0 评论 122 浏览 评分:9.9
计算奇数个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; int t,cnt=0; …… 题解列表 2023年05月11日 0 点赞 0 评论 76 浏览 评分:0.0
奇数个数(C++) 摘要:```c++ #include #include #include #include #include #include using namespace std; int …… 题解列表 2023年08月23日 0 点赞 0 评论 157 浏览 评分:0.0