delphi if a in[1,2,3,4,5] then b='c' else b=''
来源:学生作业帮 编辑:神马作文网作业帮 分类:英语作业 时间:2024/11/12 15:37:56
delphi if a in[1,2,3,4,5] then b='c' else b=''
如果a等于1,2,3,4,5时b等于c,否则等于空 这个句子在delphi报表里面怎么写?
如果a等于1,2,3,4,5时b等于c,否则等于空 这个句子在delphi报表里面怎么写?
有多种写法啊:
一、如果a定义为整型:a:Integer
if (a>=1 ) and (a
再问: 我这样写你看对吗 a : Char begin if a in ['1','2','3','4','5'] then b := 'c' else b:='' end
再答: 正确,不过要写对地方! var a : Char; b,c : string; begin f a in ['1','2','3','4','5'] then b := 'c' else b:='' end;
一、如果a定义为整型:a:Integer
if (a>=1 ) and (a
再问: 我这样写你看对吗 a : Char begin if a in ['1','2','3','4','5'] then b := 'c' else b:='' end
再答: 正确,不过要写对地方! var a : Char; b,c : string; begin f a in ['1','2','3','4','5'] then b := 'c' else b:='' end;
delphi if a in[1,2,3,4,5] then b='c' else b=''
A=2:b=1:c=0 if a then if b then if c then Print “1” else Pri
12、语句if 3*4>=10 then a=1 else a=2 执行后,a的值为( ). A、12 B、10 C、1
关于 if(!a)x--;else if(b);if(c)x=3;else x=4;
a=b=c=0;x=35; if(!a)x--;else if(b);if(c)x=3;else x=4 中的 if(!
c语言:a=b=c=0;x=35; if(!a)x--;else if(b);if(c)x=3;else x=4
挺难的数学题.if a=5 b=2 c=4 then d=4if a=1 b=5 c=7 then d=2if a=3
int a=5,b=1,c=2;if (a=b+c)printf("a=b+c);else printf(a!=b+c)
英语翻译while C>0 do if A∨B then C:=C+ D else C:=C*D写错了,是if A∨B
a=b=c=0;x=35; if(!a)x--;else if(b);if(c) x=3; else x=4;程序运行后
Delphi中if c then 与if c=true then 的区别?
int a =1,b=0; if(--a) b++; else if (a=0)b+=2; else b+=3; b等于