ICT
the blog for ICT
ken013194
暱稱: ホロ
性別: 男
國家: 香港
地區: 葵青區
« August 2026 »
SMTWTFS
1
2345678
9101112131415
16171819202122
23242526272829
3031
最新文章
Text File
Arrays
String Procedures
String Functions
String Operation
文章分類
全部 (23)
Programming Language (23)
訪客留言
最近三個月尚無任何留言
每月文章
日誌訂閱
尚未訂閱任何日誌
好友名單
尚無任何好友
網站連結
尚無任何連結
最近訪客
最近沒有訪客
日誌統計
文章總數: 23
留言總數: 0
今日人氣: 0
累積人氣: 98
站內搜尋
RSS 訂閱
RSS Feed
2009 年 9 月 11 日  星期五   晴天


Sequential Structure 分類: Programming Language

High-level Programming Language (Pascal)

Sequential Structure

  • execution of a sequence of statements in the order in which they appear so that each statement is executed exactly once
  • the arrows in the diagram, called flow lines, indicate the order in which the statements are executed

  • in a Pascal program, a sequential structure is implemented by a compound statement whose syntax is as follows :
    • compound statement is a sequence of statements placed within the reserved words begin and end

      begin
       <statement_1>;
       <statement_2>;
          … ;
       <statement_n>
      end ;

    • for example,

       

      begin
       write ('Enter two numbers : ');
       readln (Number1, Number2);
       Sum := Number1+Number2;
       writeln ('Sum = ', Sum)
      end;

      • first displays a prompt to the user and then reads two numbers; next, it calculates their sum; and finally, it displays the result
 





訪客留言 (返回 ken013194 的日誌)

訪客名稱:
電郵地址: (不會公開)
驗證碼:  按此更新驗證碼 (如看不清楚驗證碼請點擊圖片刷新)
俏俏話: (必需 登入 後才能使用此功能)
[ 開啟多功能編輯器 ]