------------------------------------------------------------------------------------------------------
所有整数中只要用该数模上10结果为9即记9出现一次,每次count++即可得出9出现的所有次数。
------------------------------------------------------------------------------------------------------
C语言代码如下:
# include <stdio.h> int main() { int i,x,count=0; for(i=1; i<=1000; i++) { x = i%10; if(x == 9) { count++; } } printf("一到一百中9出现的次数是:%d\n", count); return 0; }
----------------------------------------------------------------------------------------
干货小知识:关于#define: 在C语言中约定,#define语句中的标识符都是大写。
----------------------------------------------------------------------------------------
时间: 2024-10-06 14:05:15