此文将以具体实例详解Lua 与 C# 循环语句的区别
一、While循环
实例:求1至100内的奇数的和
C#中:
class Program
{
static void Main(string[] args)
{
int a = 1;
int b = 0;
while (a<100)
{
if (a % 2 != 0)
{
b += a;
}
a++;
}
Console.WriteLine(b);
Console.ReadKey();
}
}
Lua中:
区别
1、Lua定义变量时无需类型定义,可直接赋值
2、lua中无需定义域(即:{})
3、lua中需分别在While循环开始与结尾添加do与end
二、do…while与repeat…until
实例:计算10 的阶乘
C#中:
int a = 10;
int b = 0;
do
{
b = b +a;
a = a -1;
}
while(a>0)
console.writeline(b);
console.readkey();
Lua中:
a = 10
b = 0
repeat
b = b+a
a = a -1
until(a==0)
print(b)
区别:
1、Lua定义变量时无需类型定义,可直接赋值
2、lua中无需定义域(即:{})
3、Lua中Until后的条件为满足时截止循环,C#中while后的条件为满足时进行循环
三、For循环
实例:计算1至10的累加
C#中:
int b = 0;
for(int a = 1; a<11; a++)
{
b+=a;
}
console.writeline(b);
console.readkey();
Lua中:
b = 0
for a = 1,10
do
b = b+a
end
print(b)
区别:
1、Lua定义变量时无需类型定义,可直接赋值
2、lua中无需定义域(即:{})
3、for后条件表达方式不同(具体看上方实例)
4、Lua中分别需在for循环开始与结尾分别添加do与end
|
请发表评论