0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

初心者によるメモ(アルゴ式「九九の一覧」)

Posted at

アルゴ式で間違えたところのメモ

問題

アルゴ式ロジック実装初級

考察

二重ループを用いて数字は出力する。文字列にするにはf文字列を使うと便利。jの添え字に注意。

ACコード

for i in range(1,10):
    s = ""
    for j in range(1,10):
        print(f"{i} * {j} = {i * j}")
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?