//1-100 使用while循环来统计数字9出现出的次数
public class Test1 {
public static void main(String[] args) {
int count=0;
int i=1;
while(i<=100){
if(i+1%10==0){
count++;
}else if(i>=90&&i<99){
count++;
}
i++;
}
System.out.println("1到100 含数字9出现次数:"+count);
}
}