奇数个数-题解(C语言代码)不用函数,数组,小白上手 摘要:#include int main() { int n; scanf("%d",&n); int i; int c=0; while(n>0){ i=n%10; …… 题解列表 2020年03月27日 0 点赞 0 评论 261 浏览 评分:0.0
C语言代码,简单易懂 摘要:解题思路:一个穷举法注意事项:因为是字符串,注意要有数字要有单引号。参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main…… 题解列表 2022年02月20日 0 点赞 0 评论 222 浏览 评分:0.0
1989题解方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[1000]; int i,sum=0; gets(a); for(i=0;a[i]!='\…… 题解列表 2024年11月22日 0 点赞 0 评论 51 浏览 评分: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 评论 253 浏览 评分:0.0
奇数个数 (C语言代码) 摘要:解题思路:题目已经提示得很明确,把数字看做字符。那么,就将数字看做字符,在与奇数字符作对比,如果是奇数字符,则统计数目加1.我使用的是列举法,将所有奇数字符列举出来,与输入字符对比。注意事项:需要将统…… 题解列表 2019年02月25日 0 点赞 0 评论 557 浏览 评分:0.0
1989: 奇数个数 摘要:解题思路:入门题一般定义一个长数组即可。比较字符数字-‘0’的ASCII码值注意事项:参考代码:#include <stdio.h> int main(){ char str[1000]; …… 题解列表 2021年03月05日 0 点赞 0 评论 230 浏览 评分: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
奇数个数-题解(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++) 摘要:```c++ #include #include #include #include #include #include using namespace std; int …… 题解列表 2023年08月23日 0 点赞 0 评论 157 浏览 评分: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