Lib.nbdp.net
首页
试卷列表
OJ题库
搜索
登录
主页
题库
详解
不是VIP会员,不能显示答案
题目解答
题目:
Program test_2013_1;
Var a,b,c:integer;
Begin
a:=4;b:=5;c:=6;
a:=b+c;b:=b-a;a:=a-b;
if a<0 then
if b>0 then c:=b+a
else c:=b-a;
if c>0 then writeln(‘Wish you success!’)
else writeln(‘Good luck to you!’)
End.
输出:
Wish you sucess!
考点:
分析:
解答:
评论:
老师: