在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/05/04 16:46:04
在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语句起到什么作用

在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后面了.

在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 of 语句时 ,不知道用什么符号表示无限大. 在多分支CASE语句中,必须有一个条件表达式成立是对是错? 请问大家delphi中的除号用什么符号表示?加减乘分别用+ - * 表示请问在delphi中除号用什么表示啊? in case in case后面一定要加情态动词吗?in case可以用在什么从句中,分别举例说明?in case 有虚拟的意思吗? case when语句结尾用end 还是end casePL SQLend 和 end case有什么区别? to 在英语语句中起什么作用 if语句在程序中起到了什么作用 口技中描述听众反应的语句有什么作用? 比喻在语句表达上有什么作用? delphi中dimens[1]. C语言中case语句,case和数字之间加不加空格有什么区别:例如case1:和case空格1:,后者比较对,但是前者也能运行出来,不过答案案是错的, delphi中if then else语句怎么写.举个最简单的例子 vb相当于delphi的ShowMessageFmt()的函数是什么?比如delphi这句话:ShowMessageFmt('%x',[TTRYVERSION]);在VB中怎么表述? 在SQL语句中WHERE pud_id=titles.pub_id AND city LIKE'B%'是什么意思起到什么作用有, vb6.0中case语句 case is>10 and is 在VB中,&在语句中表示什么意思,起什么作用,最好举例说明,我是新手, for循环语句中有switch语句,其中break在switch语句中,break起得是怎么作用,是跳出for循环体的作用吗?