下列给定,函数fun的功能是:找出100到x(x≤999)之间各位上的数字之和为15的所有整数,并在屏幕输出;将符合条件的整数的个数作为函数值返回。 例如,当n值为500时,各位数字之和为15的整数有:159、168、177、186、195、249、258、267、276、285、294、339、348、357、366、375、384、393、429、438、447、456、465、474、483、492。共有26个。 int fun(int x) { int n, s1, s2, s3, t; /**********found**********/ n=__1__; t=100; while(t<=x) { s1=t%10; s2=(t/10)%10; s3=t/100; if(s1+s2+s3==15) { printf("%d ",t); n++; } t++; } return n; } 请选择在下画线处填入正确的语句,使程序得出正确的结果。