- 积分
- 2125
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-12-6
- 最后登录
- 1970-1-1

|

楼主 |
发表于 2012-4-8 13:11:28
|
显示全部楼层
topmad 发表于 2012-4-8 11:32
把信息量补全 把你想要做的东西 细节...都说清楚 才好看啊
恩,好的。
!con1 是判断前一个是否降水的,con2统计没有降水的天数的
!数组a是记录连续多少天没有降水出现的次数的
program main
implicit none
integer i,j,k,l,m,n,con1,con2
integer::line=500
real year(50)
real station(500,1)
real a(100)
!读取资料
open(10,file='d:\chengxu\yc\one.txt',status='old')
do m=1,line
read(10,*) station(m,1)
end do
close(10)
do j=1,100
a(j)=0
enddo
open(20,file='d:\chengxu\yc\11.txt',status='replace')
con1=0
con2=1
do n=1,line
!判断当前一天是否将水
if (station(n,1)<10) then
con1=0
else
con1=1
endif
!前一天没有降水,判断第二天的降水情况
if (station(n+1,1)<10.and.con1==0)then
con2=con2+1
elseif(station(n+1,1)>10.and.con1==0)then
a(con2)=a(con2)+1
!前一天有降水,判断第二天的降水情况
elseif(station(n+1,1)<10.and.con1==1)then
con2=1
con1=1
else(station(n+1,1)<10.and.con1==1)then
con1=1
con2=0
endif
end do
write(20,*)(a(100),i=1,100)
close(20)
end |
|