2
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.

無限ループって怖いですね

Last updated at Posted at 2018-10-02

Qiita初投稿です。

備忘録を兼ねてます。2018年に何を書いてるんだろう。
少しずつ書き足していきます。ツッコミどんどんください。

先日、業務でClassicASP製のウェブページをASP.NETで書き換える必要があり、
その際にループ文でつまづいたのでまとめてました。

条件判定を行ってから実行する場合

VBScript

Do While hoge 比較演算子 hoge2
   WScript.Echo "Hello World!"
Loop

c#

While (hoge 比較演算子 hoge2)
{
  Console.WriteLine("Hello World!");
}

実行してから条件判定をする場合

VBScript

Do 

  WScript.Echo "Hello World!"

Loop While hoge 比較演算子 hoge2

c#

do{

 Console.WriteLine("Hello World!");

}while( hoge 比較演算子 hoge2)

条件式を反転させたい場合

VBScript

Do While Not hoge 比較演算子 hoge2
   WScript.Echo "Hello World!"
Loop

c#


While (!(hoge 比較演算子 hoge2))
{
  Console.WriteLine("Hello World!");
}

後日JavaScriptについても追記しようと思います。

2
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
2
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?