在delphi中case语句有什么作用?谁给我详细说下.例如 type daytype=(sun,mon,tue,wed,thu,fri,sat) begin case succ(sun) of sun:write(‘sunday’); mon:write(‘monday’); . sat:write('saturday'); end; 这段代码中case语句
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/23 20:58:29
在delphi中case语句有什么作用?谁给我详细说下.例如 type daytype=(sun,mon,tue,wed,thu,fri,sat) begin case succ(sun) of sun:write(‘sunday’); mon:write(‘monday’); . sat:write('saturday'); end; 这段代码中case语句
在delphi中case语句有什么作用?
谁给我详细说下.例如 type daytype=(sun,mon,tue,wed,thu,fri,sat) begin case succ(sun) of sun:write(‘sunday’); mon:write(‘monday’); . sat:write('saturday'); end; 这段代码中case语句起到什么作用
在delphi中case语句有什么作用?谁给我详细说下.例如 type daytype=(sun,mon,tue,wed,thu,fri,sat) begin case succ(sun) of sun:write(‘sunday’); mon:write(‘monday’); . sat:write('saturday'); end; 这段代码中case语句
case是个分支语句.就是按照case ... of 中间的那个内容,对应是什么,就运行那个后面的语句.比如succ(sun)表示sun后面的那个元素,就应该是 mon .然后case mon of,就是只运行mon后面的那个语句,也就是write('monday');然后就跳到end后面了.