6-9统计个位数字C语言

更新时间:2023-05-18 13:28:49 阅读: 评论:0

6-9统计个位数字C语⾔
2011中考作文⼤⼀新⼿,只是记录⼀下⾃⼰做的题;
思路较死板,正在慢慢学习
本题要求实现⼀个函数,可统计任⼀整数中某个位数出现的次数。例如-21252中,2出现了3次,则该函数应该返回3。函数接⼝定义:
int Count_Digit ( const int N, const int D );
其中N和D都是⽤户传⼊的参数。N的值不超过int的范围;D是[0, 9]区间内的个位数。函数须返回N中D出现的次数。
#include <stdio.h>
int Count_Digit ( const int N, const int D );
loving
int main()
{
guarantee用法
int N, D;
welding machine
scanf("%d %d", &N, &D);
国庆英语printf("%d\n", Count_Digit(N, D));
return 0;
}
绿日乐队int Count_Digit ( const int N, const int D ){
int m,i,j;
int me[1000];
int count=0;
if(N>=0)m=N;
cereal怎么读>shaderel m=-N;
for(i=1;i<1000;i++){
me[i]=m%10;
m=m/10;
eleanor roovelt
if(m<1)break;
}
for(j=1;j<=i;j++){
if(me[j]==D)
count++;
}
return count;
}
>kenko

本文发布于:2023-05-18 13:28:49,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/90/113310.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:函数   出现   返回   死板   个位数   次数   作文   超过
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图