#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
int main()
{
int i = 0;
int count = 0;
for (i = 0; i <= 100; i++)
{
if (i % 10 == 9)
{
count++;
}
if (i / 10 == 9)
{
count++;
}
}
printf("%d\n", count);
system("pause");
return 0;
}
编写程序数一下 1到 100 的所有整数中出现多少次数字9
最新推荐文章于 2018-10-29 07:35:59 发布