1、C语言中的for循环:
#include <stdio.h>
int main()
{
int i=0;
for(i = 0; i < 5; i++)
{
printf("The next number id %d\n", i);
}
}
# 运行结果:
The next number id 0
The next number id 1
The next number id 2
The next number id 3
The next number id 4
The next number id 5
2、?Shell中C语言风格的for循环语法:
? ? ? for((a = 1; a <10; a++))
? ? ? do
? ? ? ? ? commands
? ? ? done
#!/bin/bash
for ((i=5; i<10; i++))
do
echo "Next number is: $i"
done
# 计算1到100和
for ((i=1; i<=100; i++))
do
(( sum+=$i ))
done
echo "1+2+...+100=$sum"
# 运行结果
% sh 15.for_each4.sh
Next number is: 5
Next number is: 6
Next number is: 7
Next number is: 8
Next number is: 9
1+2+...+100=5050
? 说明:使用双括号把C语言风格代码包括起来就可以让shell识别。
?
|