私はPascalプログラミングの初心者であり、文字列を有効な日付に変換するために1日を費やしました。この日付を使用して、後で別の日付を減算して、2つの日付の間の日数を見つけることができます。plsplsは私を助けてくれますか。
私はこのコードから始めて、文字列形式で入力された最初の日付を、計算で使用できる日付に変換しようとしました。
program TryDate;
Var
date1: TDateTime;
thedate:string;
Begin
Writeln ('Enter date');
Readln (thedate);
date1:=StrToDate (thedate);
Writeln ('The date is ',date1);
end.
The program's basic structure can be seen here:
Begin
Writeln ('Enter customer last name');
readln (clname);
Writeln ('Enter customer first name');
readln (cfname);
Writeln ('Enter Dvd Title');
readln (dvdtit);
Writeln ('Enter Due Date');
readln (dued);
Writeln ('Enter Actual Date Returned');
readln (adret);
daysover:=adret-dued;
readln;
end.
プログラムをさらに拡張することが期待されていますが、他のコンポーネントを試す前に、この小さな部分を機能させようとしていました。
簡単な説明と例、または考えられる解決策をいただければ幸いです。