1
1

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 1 year has passed since last update.

パラメーターってなに?

Last updated at Posted at 2023-04-06

パラメーターは変数のこと
追記)プログラミングでは、関数やメソッドなどが呼び出し元から渡された値を受け取るために宣言された引数のことをパラメーターという

・身近な例

数学の、y=2x とか y=7xとかのxがパラメーター(変数)にあたる

・実際にプログラムの中でパラメーターが使われている例

スマホとかのアラーム機能
X時yz分にアラームを鳴らすというプログラムがされている
このxyzがパラメーターにあたる

↓具体例

例えば8時30分にアラームを設定した場合
z=8
y=3
z=0
になる

・C言語を用いた例

float multi2digits(float x, float y){float multiplication = x * y;return multiplication;}

x,yがパラメーター

1
1
4

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?