var a,b,c,d,s:integer;
begin
while not eof do begin
readln(a,b,c,d);
s:=(10*c+d) mod 4;
if(s=0)
then writeln('閏年');
if(s=1)
then writeln('平年');
if(s=2)
then writeln('平年');
if(s=3)
then writeln('平年');
end;
end.
這樣WA
請問哪裡出了問題呢?
var a,b,c,d,s:integer;
begin
while not eof do begin
readln(a,b,c,d);
s:=(10*c+d) mod 4;
if(s=0)
then writeln('閏年');
if(s=1)
then writeln('平年');
if(s=2)
then writeln('平年');
if(s=3)
then writeln('平年');
end;
end.
這樣WA
請問哪裡出了問題呢?