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

【自分用メモ】Pythonを使ったアルゴリズムの学習

Last updated at Posted at 2022-11-21

投稿日:2022/11/20
Pythonを使ったアルゴリズムの学習を行いました。
理解したことを、自分用のメモとして残します。

入力された2つの値の総和を求めるプログラムを作成せよ

自分の回答
num1 = input("好きな整数を入力してください")
num2 = input("好きな整数をもう一つ入力してください")

print(num1, "", num2, "が入力されました。")
print("入力された整数の合計は", int(num1) + int(num2), "です。")
出力結果
4 と 8 が入力されました。
入力された整数の合計は 12 です。
模範解答
# リスト内包表記:既存のリストから取り出した要素に対し処理
# [xの処理 for x in 配列など]
# 2つの整数を空白で区切り、文字列として受け取る A, B, C = input().split()
# int(x):データ型の変換、文字列 → 整数
num1, num2 = (int(x) for x in input("空白を開けて整数を2つ入力して下さい").split())
print(num1 + num2)
出力結果
空白を開けて数字を2つ入力して下さい7 4
11

参考文献

以下の記事を参考にさせていただきました。

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