当前位置:网站首页>刷题-洛谷-P1179 数字统计
刷题-洛谷-P1179 数字统计
2022-08-04 19:44:00 【宋向上_UP】
P1179 数字统计-C语言
1、题目
2、解题过程
结果:
代码:
//洛谷 P1179 数字统计
#include <stdio.h>
//#define MIN 1
//#define MAX 100000
int main() {
int l, r;//给定范围
int counter=0;//计数器
int i;
int temp,temp_2;
scanf("%d %d", &l, &r);
for (i = l; i <= r; i++) {
temp = i;
while (temp != 0) {
temp_2 = temp % 10;
if (temp_2 == 2) {
counter++;
}
temp = temp / 10;
}
}
printf("%d", counter);
return 0;
}
边栏推荐
- 如何手动下载并安装 Visual Studio Code 的 SAP Fiori tools - Extension Pack
- Client Side Cache 和 Server Side Cache 的区别
- 正则表达式未完
- seata源码解析:seata server各种消息处理流程
- T+Cloud: A "Smart Company" for Building New Business Social Networks and Marketing Relationships
- The establishment of simple data cache layer
- 基于YOLOV5行人跌倒检测实验
- Dragoma (DMA) Metaverse System Development
- Orthodontic MIA micro-implant anchorage technology China 10th anniversary exchange meeting was held in Shenyang
- 【着色器实现Glitch单项故障闪烁效果(与Television效果不同)_Shader效果第十四篇】
猜你喜欢
随机推荐
图片延迟加载、预加载
MMDetection usage example: from entry to exit
getBoundingClientRect
一些性能测试的要点
The list of Kubernetes - watch mechanism
03 ts类型缩小,函数
重构指标之如何监控代码圈复杂度
Finger Vein Recognition-matlab
Orthodontic MIA micro-implant anchorage technology China 10th anniversary exchange meeting was held in Shenyang
To -.-- -..- -
使用 Chrome 开发者工具 coverage 功能分析 web 应用的渲染阻止资源的执行分布情况
小波提取特征的VQ实现
高效目标检测:动态候选较大程度提升检测精度(附论文下载)
用“绿色计算“技术推动算力可持续发展
Storage resource activation system to help new infrastructure
「 WAIC 2022 · 黑客马拉松」蚂蚁财富两大赛题邀你来战!
SAP UI5 确保控件 id 全局唯一的实现方法
致-.-- -..- -
The establishment of simple data cache layer
使用 Allatori 进行 Jar 包混淆