没脾气2x:
if else if else if else if 我还是喜欢 delphi 的描述
[阅读: 1264] 2005-01-19 14:39:08
DELPHI:
if condition1 then
begin
end else
if condition2 then
begin
end else
if condition3 then
begin
end;
C, C++, C#
if (condition1)
{
}
else if (condition2)
{
}
else if (condition3)
{
}