> 其他 >
在1000到10000内的整数能被147或197整除的个数是多少?
人气:406 ℃ 时间:2020-04-09 22:22:55
解答
107用pascal解决的程序:program lx;vari :integer;total :integer;beginfor i:=1000 to 10000 doif (i mod 147=0) or (i mod 197=0) thentotal:=total+1;writeln(total);end.
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版