数字出力putdec() ― 2014年10月12日 19:32
先に出てきたputdec(n,w)をみてみましょう。 数値nをw桁で印字します。必要があれば、桁は拡張されます。
RATFOR版は下記の通り。
# putdec.r4 -- put decimal integer n in field width >= W subroutine putdec(n, w) character chars(MAXCHARS) integer itoc integer i, n, nd, w nd = itoc(n, chars, MAXCHARS) for ( i = nd + 1; i <= w; i = i + 1) call putc(BLANK) for ( i = 1; i <= nd; i = i + 1) call putc(chars(i)) return end
ここで、itoc(n,chars,MAXCHARS)は、数値nを長さMAXCHARS文字の文字配列charsに変換します。
RATFOR版は下記の通り。
# itoc.r4 -- convert integer int to character string str integer fnction itoc(int, str, size) integer abs, mod integer d, i, int, intval, j, size character str(size), k string digits "0123456789" intval = abs(int) str(1) = EOS i = 1 repeat { # generate digits i = i + 1 d = mod(intval, 10) str(i) = digits(d + 1) intval = intval / 10 } until (intval == 0 ! i >= size) if (int < 0 & i < size) { # then sign i = i + 1 str(i) = MINUS } itoc = i - 1 for (i = 1; j < i; j = j + 1) { # then reverse k = str(i) str(i) = str(j) str(j) = k i = i - 1 } return end
string deigits "0123456789"とは、文字を文字配列にセットするマクロで、
character digits(11) data digit(1) /'0'/ data digit(2) /'1'/ data digit(3) /'2'/ data digit(4) /'3'/ data digit(5) /'4'/ data digit(6) /'5'/ data digit(7) /'6'/ data digit(8) /'7'/ data digit(9) /'8'/ data digit(10) /'9'/ data digit(11) /EOS/と展開されます。EOSは文字列の終わりを示す記号です。
Watcom Fortran77版のputdec()、itoc()は下記の通り。
c putdec.for -- put decimal integer n in field width >= w subroutine putdec(n,w) integer n, w integer*1 chars(100) ! MAXCHARS(100) integer itoc, nd nd = itoc(n, chars, 100) ! MAXCHARS(100) i = nd + 1 while (i .le. w) do call putc(32) ! BLANK(32) i = i + 1 end while i = 1 while (i .le. nd) do call putc(chars(i)) i = i + 1 end while return end
c itoc.for -- convert integer int to character string in str integer function itoc(int,str,size) integer int, size integer*1 str(size) integer abs, mod integer d, i, intval, j integer*1 digits(11), k data digits/'0','1','2','3','4','5','6','7','8','9',-2/ ! EOS(-2) intval = abs(int) str(1) = -2 ! EOS(-2) i = 1 loop i = i + 1 ! generate digits d = mod(intval,10) str(i) = digits(d+1) intval = intval / 10 until ((intval .eq. 0) .or. (i .ge. size)) if ((int .lt. 0) .and. (i .lt. size)) then ! then sign i = i + 1 str(i) = 45 ! MINUS(45) endif itoc = i - 1 j = 1 while (j .lt. i) do ! then reverse k = str(i) str(i) = str(j) str(j) = k i = i - 1 j = j + 1 end while return end
ここまでで、charcount、wordcount、linecountのパーツがそろいましたので、 この3つをビルドしてみます。
まず、putdec()、itoc()を作成します。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>fc putdec Open Watcom FORTRAN 77/32 Optimizing Compiler Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. ..\src\putdec.for: 17 ステートメント, 92 バイト, 4 拡張メッセージ, 0 警告エラー, 0 エラー 1 個のファイルを移動しました。 C:\Users\Hiroya\Documents\ratfor\fortran\bat>fo putdec Open Watcom Library Manager Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. C:\Users\Hiroya\Documents\ratfor\fortran\bat>fc itoc Open Watcom FORTRAN 77/32 Optimizing Compiler Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. ..\src\itoc.for: 31 ステートメント, 172 バイト, 6 拡張メッセージ, 0 警告エラー, 0 エラー 1 個のファイルを移動しました。 C:\Users\Hiroya\Documents\ratfor\fortran\bat>fo itoc Open Watcom Library Manager Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details.
charcountをビルドします。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>fc charcount Open Watcom FORTRAN 77/32 Optimizing Compiler Version 1.9 Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. ..\src\charcount.for: 12 ステートメント, 69 バイト, 5 拡張メッセージ, 0 警告エラー, 0 エラー 1 個のファイルを移動しました。 C:\Users\Hiroya\Documents\ratfor\fortran\bat>fl charcount Open Watcom Linker Version 1.9 Portions Copyright (c) 1985-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. オブジェクトファイルを読込み中 ライブラリを検索中 a Windows NT character-mode 実行可能 を作成中 1 個のファイルを移動しました。
テストします。
C:\Users\Hiroya\Documents\ratfor\fortran\bat>..\exe\charcount 123 456 7890 ^Z 13
wordcount、linecountも同様にビルドしてください。
コメント
_ Pof.com Dating ― 2015年10月17日 21:45
Have you ever considered publishing an e-book or guest authoring on other websites? I have a blog based on the same ideas you discuss and would really like to have you share some stories/information. I know my readers would appreciate your work. If you're even remotely interested, feel free to shoot me an e-mail.
_ where can i buy quest bars cheap ― 2015年10月31日 00:23
Incredible quest there. What occurred after?
Thanks!
Thanks!
_ livewell labs pure forskolin extract ― 2015年11月05日 03:15
We are a group of volunteers and starting a new scheme in our
community. Your site offered us with valuable information to work on. You have done an impressive job and our entire community will
be thankful to you.
community. Your site offered us with valuable information to work on. You have done an impressive job and our entire community will
be thankful to you.
_ plenty of fish dating site of free dating ― 2015年11月06日 08:44
I am extremely impressed with your writing skills as well as with the layout on your blog.
Is this a paid theme or did you customize it yourself? Anyway keep up the nice quality writing,
it's rare to see a great blog like this one these
days.
Is this a paid theme or did you customize it yourself? Anyway keep up the nice quality writing,
it's rare to see a great blog like this one these
days.
_ plenty of fish dating site of free dating ― 2015年11月06日 18:21
Sweet blog! I found it while surfing around on Yahoo News.
Do you have any suggestions on how to get listed in Yahoo News?
I've been trying for a while but I never seem to get there!
Appreciate it
Do you have any suggestions on how to get listed in Yahoo News?
I've been trying for a while but I never seem to get there!
Appreciate it
_ plenty of fish dating site of free dating ― 2015年11月07日 14:41
I do consider all the ideas you've introduced in your post.
They're really convincing and will definitely work. Nonetheless, the posts are
too short for novices. May you please lengthen them a little from subsequent time?
Thank you for the post.
They're really convincing and will definitely work. Nonetheless, the posts are
too short for novices. May you please lengthen them a little from subsequent time?
Thank you for the post.
_ krogerfeedback ― 2015年11月13日 15:40
Wow, awesome blog format! How lengthy have you ever been blogging for?
you make blogging look easy. The overall look of your website is fantastic, as
neatly as the content!
you make blogging look easy. The overall look of your website is fantastic, as
neatly as the content!
_ kroger digital coupons sign up ― 2015年11月15日 17:07
Everything is very open with a precise clarification of the challenges.
It was definitely informative. Your website is extremely helpful.
Many thanks for sharing!
It was definitely informative. Your website is extremely helpful.
Many thanks for sharing!
_ kroger.com digital coupons ― 2015年11月16日 12:05
hello!,I like your writing so so much! share we keep up a correspondence extra about your article on AOL?
I need an expert in this space to unravel my problem.
Maybe that's you! Having a look forward to peer you.
I need an expert in this space to unravel my problem.
Maybe that's you! Having a look forward to peer you.
_ Www.Kroger.Com Digital Coupons ― 2015年11月17日 04:05
What's up, constantly i used to check webpage posts here in the early
hours in the dawn, for the reason that i love to learn more
and more.
hours in the dawn, for the reason that i love to learn more
and more.
_ kroger digital coupons sign in register ― 2015年11月17日 04:54
I am regular visitor, how are you everybody?
This paragraph posted at this web page is genuinely nice.
This paragraph posted at this web page is genuinely nice.
_ krogerfeedback ― 2015年12月04日 20:40
Every weekend i used to go to see this web page, because i want enjoyment, as this this site
conations actually pleasant funny information too.
conations actually pleasant funny information too.
_ quest bars ― 2015年12月12日 15:12
If you wish for to improve your familiarity only keep visiting this web site and
be updated with the most recent gossip posted here.
be updated with the most recent gossip posted here.
_ www.krogerfeedback.Com ― 2015年12月15日 03:39
Greate article. Keep writing such kind of information on your page.
Im really impressed by it.
Hi there, You have done an incredible job.
I will certainly digg it and personally recommend
to my friends. I am confident they'll be benefited from this site.
Im really impressed by it.
Hi there, You have done an incredible job.
I will certainly digg it and personally recommend
to my friends. I am confident they'll be benefited from this site.
_ Descargar Firefox . ― 2016年01月06日 09:20
I'll right away grab your rss as I can not in finding your
email subscription hyperlink or newsletter service.
Do you've any? Kindly allow me recognise in order that I may subscribe.
Thanks.
email subscription hyperlink or newsletter service.
Do you've any? Kindly allow me recognise in order that I may subscribe.
Thanks.
_ quest bars ― 2016年02月09日 16:20
Hi there! This is my 1st comment here so I just wanted to give a
quick shout out and tell you I truly enjoy reading through
your posts. Can you suggest any other blogs/websites/forums that go over the same subjects?
Thanks a lot!
quick shout out and tell you I truly enjoy reading through
your posts. Can you suggest any other blogs/websites/forums that go over the same subjects?
Thanks a lot!
_ quest bars ― 2016年02月10日 12:55
Hey there just wanted to give you a quick heads up.
The words in your article seem to be running off the screen in Safari.
I'm not sure if this is a format issue or something to do with browser compatibility but
I figured I'd post to let you know. The design look great though!
Hope you get the problem resolved soon. Cheers
The words in your article seem to be running off the screen in Safari.
I'm not sure if this is a format issue or something to do with browser compatibility but
I figured I'd post to let you know. The design look great though!
Hope you get the problem resolved soon. Cheers
_ quest bars ― 2016年02月11日 03:22
This design is steller! You obviously know how to keep a
reader amused. Between your wit and your videos,
I was almost moved to start my own blog (well, almost...HaHa!) Wonderful job.
I really enjoyed what you had to say, and more than that, how you presented it.
Too cool!
reader amused. Between your wit and your videos,
I was almost moved to start my own blog (well, almost...HaHa!) Wonderful job.
I really enjoyed what you had to say, and more than that, how you presented it.
Too cool!
_ http://www.blogigo.de/jefferyoqou/What-You-Need-Know-About-Deciding-Root-Factors/14/ ― 2016年03月25日 04:22
Appreciate the recommendation. Let me try it out.
_ bernie sanders ― 2016年04月01日 20:48
I used to be able to find good info from your articles.
_ laptop repair ― 2016年04月02日 12:57
Hello this is somewhat of off topic but I was wanting to know if blogs
use WYSIWYG editors or if you have to manually code with
HTML. I'm starting a blog soon but have no coding know-how so I wanted to get advice
from someone with experience. Any help would be greatly
appreciated!
use WYSIWYG editors or if you have to manually code with
HTML. I'm starting a blog soon but have no coding know-how so I wanted to get advice
from someone with experience. Any help would be greatly
appreciated!
_ Hassie ― 2016年05月09日 14:03
Some truly select posts on this website , bookmarked .
_ http://all4webs.com ― 2016年05月15日 12:42
Very nice post. I just stumbled upon your blog and wished to say that I've really enjoyed browsing your blog posts.
After all I will be subscribing to your rss feed and I hope you
write again soon!
After all I will be subscribing to your rss feed and I hope you
write again soon!
_ krogerfeedback ― 2016年06月06日 02:38
Have you ever thought about publishing an e-book
or guest authoring on other sites? I have a blog based upon on the same ideas you discuss and would love to
have you share some stories/information. I know my viewers would value your work.
If you are even remotely interested, feel free to send me an e mail.
or guest authoring on other sites? I have a blog based upon on the same ideas you discuss and would love to
have you share some stories/information. I know my viewers would value your work.
If you are even remotely interested, feel free to send me an e mail.
_ quest bars cheap ― 2016年06月13日 05:59
Thanks for sharing your info. I truly appreciate your efforts and I will be waiting for your further
post thank you once again.
post thank you once again.
_ quest bars cheap ― 2016年06月13日 06:32
These are actually impressive ideas in concerning blogging.
You have touched some fastidious things here. Any way keep
up wrinting.
You have touched some fastidious things here. Any way keep
up wrinting.
_ quest bars cheap ― 2016年06月16日 11:42
Hey! I could have sworn I've been to this blog before but
after checking through some of the post I realized it's new to me.
Anyways, I'm definitely glad I found it and I'll be bookmarking and checking back
often!
after checking through some of the post I realized it's new to me.
Anyways, I'm definitely glad I found it and I'll be bookmarking and checking back
often!
_ mincraft ― 2016年07月02日 21:32
For hottest information you have to pay a visit internet and on web I found this website
as a finest website for hottest updates.
as a finest website for hottest updates.
_ Mincraft ― 2016年07月02日 23:29
There's definately a great deal to find out about this topic.
I like all the points you've made.
I like all the points you've made.
_ Mincraft ― 2016年07月03日 02:39
Wonderful post! We are linking to this great content on our site.
Keep up the great writing.
Keep up the great writing.
_ Mincraft ― 2016年07月03日 04:41
Appreciating the commitment you put into your
blog and in depth information you provide. It's great to come across a blog
every once in a while that isn't the same outdated rehashed material.
Great read! I've saved your site and I'm including your RSS feeds
to my Google account.
blog and in depth information you provide. It's great to come across a blog
every once in a while that isn't the same outdated rehashed material.
Great read! I've saved your site and I'm including your RSS feeds
to my Google account.
_ Mincraft ― 2016年07月03日 06:45
It's actually very complex in this full of
activity life to listen news on Television, so I only use web for that reason, and get the latest news.
activity life to listen news on Television, so I only use web for that reason, and get the latest news.
_ t.co ― 2016年07月09日 13:19
It's hard to come by experienced people for this topic,
but you seem like you know what you're talking about! Thanks
but you seem like you know what you're talking about! Thanks
_ t.co ― 2016年07月09日 15:22
Wow that was odd. I just wrote an extremely long comment but after I clicked
submit my comment didn't appear. Grrrr... well I'm not writing all that over again. Regardless, just wanted to say superb blog!
submit my comment didn't appear. Grrrr... well I'm not writing all that over again. Regardless, just wanted to say superb blog!
_ www.krogerfeedback.com ― 2016年07月26日 05:06
If you wish for to get much from this piece of writing then you have to apply such strategies to your won website.
_ kroger digital coupons ― 2016年07月27日 16:10
Hi there, I log on to your blog daily. Your humoristic style is witty,
keep doing what you're doing!
keep doing what you're doing!
_ www.krogerfeedback.com ― 2016年07月30日 16:47
great points altogether, you simply won a logo new reader.
What could you recommend in regards to your
post that you made some days ago? Any certain?
What could you recommend in regards to your
post that you made some days ago? Any certain?
_ Mincraft ― 2016年08月12日 15:40
Hurrah! Finally I got a blog from where I be able to genuinely take valuable information regarding my study and knowledge.
_ fix connections to bluetooth audio devices and wireless displays in windows 10 ― 2016年08月19日 06:52
I was curious if you ever thought of changing the structure of your site?
Its very well written; I love what youve got to say.
But maybe you could a little more in the way of content so people could connect with it better.
Youve got an awful lot of text for only having one or two pictures.
Maybe you could space it out better?
Its very well written; I love what youve got to say.
But maybe you could a little more in the way of content so people could connect with it better.
Youve got an awful lot of text for only having one or two pictures.
Maybe you could space it out better?
_ plenty of fish dating site of free dating ― 2016年09月08日 21:44
I just like the valuable information you supply on your
articles. I will bookmark your weblog and take a look at again right here
regularly. I'm rather certain I'll learn plenty of new stuff
proper right here! Best of luck for the next!
articles. I will bookmark your weblog and take a look at again right here
regularly. I'm rather certain I'll learn plenty of new stuff
proper right here! Best of luck for the next!
_ quest bars ― 2016年09月09日 04:00
Hi there, I enjoy reading all of your article.
I like to write a little comment to support you.
I like to write a little comment to support you.
_ plenty of fish dating site of free dating ― 2016年09月12日 02:34
When someone writes an paragraph he/she retains the thought
of a user in his/her brain that how a user can be aware of it.
Therefore that's why this article is amazing. Thanks!
of a user in his/her brain that how a user can be aware of it.
Therefore that's why this article is amazing. Thanks!
_ Windows 10 Free Upgrade ― 2016年09月14日 11:17
I constantly spent my half an hour to read this webpage's articles all
the time along with a cup of coffee.
the time along with a cup of coffee.
_ minecraft sweet and awesome unblocked games ― 2016年10月04日 01:09
Excellent post. I was checking continuously this blog and
I am impressed! Extremely helpful information specifically the last part :
) I care for such info a lot. I was looking for this certain information for a long time.
Thank you and good luck.
I am impressed! Extremely helpful information specifically the last part :
) I care for such info a lot. I was looking for this certain information for a long time.
Thank you and good luck.
_ plenty of fish dating site of free dating ― 2016年10月04日 23:35
Hey very nice website!! Guy .. Beautiful .. Amazing ..
I will bookmark your website and take the feeds also? I'm satisfied
to seek out a lot of useful information right here in the publish, we'd like work out extra strategies in this regard, thanks for sharing.
. . . . .
I will bookmark your website and take the feeds also? I'm satisfied
to seek out a lot of useful information right here in the publish, we'd like work out extra strategies in this regard, thanks for sharing.
. . . . .
_ plenty of fish dating site of free dating ― 2016年10月05日 15:42
Greate pieces. Keep posting such kind of info on your page.
Im really impressed by it.
Hi there, You've performed a fantastic job. I'll definitely digg it and in my opinion recommend to my
friends. I am confident they will be benefited from this web
site.
Im really impressed by it.
Hi there, You've performed a fantastic job. I'll definitely digg it and in my opinion recommend to my
friends. I am confident they will be benefited from this web
site.
_ quest bars ― 2016年10月06日 07:41
Good post. I learn something totally new and challenging on blogs I stumbleupon every day.
It's always helpful to read through articles from other authors and use a little something from their websites.
It's always helpful to read through articles from other authors and use a little something from their websites.
_ como descargar minecraft ― 2016年10月12日 22:22
I've learn a few just right stuff here. Certainly price bookmarking for
revisiting. I wonder how much attempt you
set to create this kind of magnificent informative web site.
revisiting. I wonder how much attempt you
set to create this kind of magnificent informative web site.
_ gamefly 3 month free trial ― 2016年11月15日 13:25
Very quickly this site will be famous amid all blog viewers, due to it's good articles or reviews gamefly 3 month free trial
_ gamefly 3 month free trial ― 2016年11月16日 12:54
Hi to all, how is everything, I think every one is
getting more from this website, and your views are good designed for new visitors.
Gamefly 3 month free trial
getting more from this website, and your views are good designed for new visitors.
Gamefly 3 month free trial
※コメントの受付件数を超えているため、この記事にコメントすることができません。
トラックバック
このエントリのトラックバックURL: http://kida.asablo.jp/blog/2014/10/12/7456934/tb
最近のコメント