編寫程式數一下1到100的所有整數中出現多少次數字9

zyh_helen發表於2014-12-27
/*
*********************************************
編寫程式數一下1到100的所有整數中出現多少次數字9
*****************************************
*/
#include<stdio.h>

int main()
{
	int count = 0;

	for(int i = 0; i <= 100; i++)
	{
		if((i % 10) == 9 || (i / 10) == 9) //前者判斷個位是否等於9,後者判斷十位是否等於9  
		{
			printf("%d\n",i);
			count++;
		}
	}
	printf("%d\n",count);
	return 0;
}

相關文章