编写程序数一下 1到 100 的所有整数中出现多少个数字9

public static void main(String[] args) {
int count = 0;
for (int i = 1; i < 100; i++) {
if(i % 10 == 9) {
count++;
}else if(i / 10 == 9) {
count++;
}
}
System.out.println(count);
}

posted @ 2021-01-06 17:50  LinYanyan  阅读(130)  评论(0编辑  收藏  举报