http://www.bc-cn.net/Article/kfyy/cyy/jc/200409/5_4.html
float aver(float a[5])
{
int i
float av,s=a[0]
for(i=1 i<5 i++)
s=s+a[i]
av=s/5
return av
}
void main()
{
float sco[5],av
int i
Linux常用命令
1 文件列表 – ls :
ls #以默认方式显示当前目录文件列表;
ls –a #显示所有文件包括隐藏文件;
ls –l #显示文件属性,包括大小,日期,符号连接,是否可读写及是否可执行。
2 目录切换 – cd :
cd dir #切换到当前目录下的dir 目录;
cd / #切换到根目录;
cd .. #切换到到上一级目录。
3 复制 – cp : ...
Produce Java classes to calculate and display the Poisson probability when input the value of the average (A) arrival rate of customers at some business in the range of 1 to 10. The error message will output when A is out of the range。