mattsan #7061(2008/08/08 07:08 GMT) [ Delphi ] Rating0/0=0.00
あらためてDelphi(Pascal)で書いてみると。他の言語と比べて変数が多くなってしまう感じです。
現在、手元にDephiがなかったのでFree PascalのDelphi互換(-Mdelphiオプション)でコンパイルしています。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
program Doukaku197; {$APPTYPE CONSOLE} uses SysUtils; var Day, Max: TDateTime; Y, M, D: Word; I: Integer; begin Day := Date; Max := EncodeDate(2013, 12, 31); I := 0; while Day <= Max do begin DecodeDate(Day, Y, M, D); if (D = 13) and (DayOfWeek(Day) = 6) then begin WriteLn(Y, '/', M, '/', D); Inc(I); end; Day := Day + 1; end; WriteLn(I, ' days'); end.
Rating0/0=0.00-0+
[ reply ]
mattsan
#7061()
[
Delphi
]
Rating0/0=0.00
あらためてDelphi(Pascal)で書いてみると。他の言語と比べて変数が多くなってしまう感じです。
現在、手元にDephiがなかったのでFree PascalのDelphi互換(-Mdelphiオプション)でコンパイルしています。
Rating0/0=0.00-0+
[ reply ]