在所有的两位数中,十位上的数字比个位上的数字要大的共有多少个?三位数中佰位比个位大的数字有多少呢? c语言代码生成
时间: 2024-03-07 18:49:49 浏览: 211
获取一个数字的个位、十位、百位的函数代码
5星 · 资源好评率100%
在所有的两位数中,十位上的数字比个位上的数字要大的共有 36 个。
三位数中百位比个位大的数字有 216 个。
以下是 C 语言代码示例:
```
#include <stdio.h>
int main() {
int count1 = 0, count2 = 0;
// 两位数
for (int i = 10; i <= 99; i++) {
int ten = i / 10;
int one = i % 10;
if (ten > one) {
count1++;
}
}
printf("两位数中,十位比个位大的数字有 %d 个\n", count1);
// 三位数
for (int i = 100; i <= 999; i++) {
int hundred = i / 100;
int ten = (i % 100) / 10;
int one = i % 10;
if (hundred > one) {
count2++;
}
}
printf("三位数中,百位比个位大的数字有 %d 个\n", count2);
return 0;
}
```
阅读全文