0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RubyとLabVIEWのカウントダウンプログラム比較

Last updated at Posted at 2016-11-29

Ruby

count_down.rb
while 1
  10.downto(0){|num|
    puts num
    sleep 1
  }
end
> ruby count_down.rb
10
9
8
7
6
5
4
3
2
1
0
10
9
8

LabVIEW

ブロックダイアグラムの配置

1. 数値表示器(ローカル変数)に初期値として10を代入する
2. 数値表示機(ローカル変数)から値を読み込み数字表示機(ローカル変数)に代入する。この手順を1秒ごとに行う
3. 右側で10秒経過したら数字表示機に値を代入する

配置.jpg

パーツ

作業手順1.jpg

パーツ2

作成手順2.jpg

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?