forループを使用してVisualBasicで平方数のリストを印刷しようとしています。私は初心者ですが、これはかなり難しいと思います。私が書いているプログラムは、数の二乗のリストを出力することになっています(例:(1、4、9、16など))。
質問する
7281 次
2 に答える
1
You could add a counter to your loop then each time the loop is executed increment it. Then inside the loop you would just need to times the counter with itself for the square.
square = counter*counter;
于 2012-08-08T09:02:26.660 に答える
1
Sub Main()
For number As Integer = 1 To 1000
Console.WriteLine("Square of {0} : {1}", number, number * number)
Next
Console.ReadKey()
End Sub
于 2012-08-08T12:56:41.617 に答える