- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
hello guys,
when I use ifort -o progrmaname *.f90 , I get an answer :
remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'.
3000 format(i4,4(1x,i2.2),2x,f13.6,i3,4(2x,e18.12))
remark #8290: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+3'.
read(fidin,"(3x,i4,4(1x,i2),2x,f10.8,1x,i7)")yr_start,mon_start,dy_start,hr_start,&
has it any influence on my program running? cause I run it well in other platform like WIN7
how can I deal with it?
best regards
PS: i installed Intel Fortran Composer XE 2011 for Linux on my Fedora15 system.
링크가 복사됨
3 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
This is an informational message warning you that F10.8 or E18.12 may not be wide enough to express values - especially if there is a negative value. It will have no effect on the running of the program.
