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 3 years have passed since last update.

Pythonで掛け算 (paizaランク D 相当)を解く

Last updated at Posted at 2020-02-26

初めに

paizaのレベルアップ問題集を解いていたのですが、模範解答がなかったので自分で作ってみました。
言語はPython3です。

問題

Paizaのスキルチェック見本問題 掛け算 (paizaランク D 相当)
https://paiza.jp/works/mondai/skillcheck_sample/multiplication?language_uid=python3
ログインしないと問題文が見れませんでした。
登録は無料ですぐにできるので、とりあえず登録してみることをおススメします。

解答コード

multiplication.py
# 入力される値を変数に保存する
a = int(input())
b = int(input())

# aとbを掛け合わして答えに保存する
answer = a * b

# 答えを出力する
print(answer)

参考

最後に

分からないところがあれば気軽にコメントしてくださいね。
できるだけ答えますよ!

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