不是VIP会员,不能显示答案

题目解答

题目:
var
a, b, i, tot, c1, c2: integer;
begin
readln(a, b);
tot := 0;
for i := a to b do
begin
c1 := i div 10;
c2 := i mod 10;
if (c1 + c2) mod 3 = 0 then
inc(tot);
end;
writeln(tot);
end.

输入:7 31
输出:8
考点: 0
分析:
解答: 从a到b数码和能被3整除的个数,即是3的倍数

9 12 15...30
评论:
老师: 0