20 likes | 125 Views
רשומות. רשומה היא טיפוס נתונים מורכב המכיל בדרך כלל יותר ממרכיב אחד.כל מרכיב ברשומה נקרא שדה, רשומה יכולה להכיל בתוכה שדות מטיפוסים שונים. Type student_type=record name:string[20]; tz:integer; avg:real; end; Var Student:student_type;.
E N D
רשומות רשומה היא טיפוס נתונים מורכב המכיל בדרך כלל יותר ממרכיב אחד.כל מרכיב ברשומה נקרא שדה, רשומה יכולה להכיל בתוכה שדות מטיפוסים שונים. Type student_type=record name:string[20]; tz:integer; avg:real; end; Var Student:student_type;
פעולות בסיסיות Readln(student.tz) Writeln (student.avg:6:2) St1.name:=student.name רשומה בתוך רשומה Type Date_type=record day,month,year:integer; end; Talmid_type=record name:string; Phone:longint; Birthday:day_type; End; Var Stu:talmid_type Begin readln (stu.birthday.day)