「XPrint」を含むwiki一覧 - 1ページ

Python 4. 関数 - 黒田の頭脳

第4章 関数関数は1つのことをすべきである。そのことを徹底すべきだ。たったそれだけのことに特化すべきだ。-Robert C. Martin関数とは、入力値を受け取り、命令を実行し、出力値を返すまでの複合分のことである。プログラム内で関数の機能を定義すれば、何度でも再利用できる。関

INC - Basicsoftのうぃき

able + 1 または、 Variable += 1 ExamplesDim X As IntegerX = 7Inc XPrint X8Dim A As New Float[3, 3]Dim X, Y As IntegerX = 2Y = 1A[X, Y]

DEC - Basicsoftのうぃき

e - 1 か Variable -= 1 となります。ExamplesDim X As IntegerX = 7Dec XPrint X6Dim A As New Float[3, 3]Dim X, Y As IntegerX = 2Y = 1A[X, Y]

  • 1