代码搜索:NUM
找到约 10,000 项符合「NUM」的源代码
代码结果 10,000
www.eeworm.com/read/154749/11929989
num
www.eeworm.com/read/116739/14956423
num
#!/bin/sh
num=0 # Initialize num
while [ $num -lt 10 ] # Test num with test command
do
echo -n $num
num=`expr $num + 1` # Increment num
done
echo "\nAfter loop exits
www.eeworm.com/read/15711/536013
num
www.eeworm.com/read/35675/1059635
num
#!/bin/bash
# Scriptname: num
num=0 # Initialize num
while (( $num < 10 )) # or while [ num -lt 10 ]
do
echo -n "$num "
let num+=1 # Increment num
done
echo -e "\nAfter loop exits
www.eeworm.com/read/35675/1059862
num
#!/bin/sh
# Scriptname: num
num=0 # Initialize num
while [ $num -lt 10 ] # Test num with test command
do
echo -n $num
num=`expr $num + 1` # Increment num
done
echo "\nAfte
www.eeworm.com/read/239312/4602445
num
#!/bin/bash
# Scriptname: num
num=0 # Initialize num
while (( $num < 10 )) # or while [ num -lt 10 ]
do
echo -n "$num "
let num+=1 # Increment num
done
echo -e "\nAfter loop exits
www.eeworm.com/read/239312/4602615
num
#!/bin/sh
# Scriptname: num
num=0 # Initialize num
while [ $num -lt 10 ] # Test num with test command
do
echo -n $num
num=`expr $num + 1` # Increment num
done
echo "\nAfte
www.eeworm.com/read/407756/2258907
num
#!/bin/bash
# Scriptname: num
num=0 # Initialize num
while (( $num < 10 )) # or while [ num -lt 10 ]
do
echo -n "$num "
let num+=1 # Increment num
done
echo -e "\nAfter loop exits
www.eeworm.com/read/407756/2259077
num
#!/bin/sh
# Scriptname: num
num=0 # Initialize num
while [ $num -lt 10 ] # Test num with test command
do
echo -n $num
num=`expr $num + 1` # Increment num
done
echo "\nAfte
www.eeworm.com/read/469193/6978929