201flaviosilva-labs / 201flaviosilva-labs/play-code

Cálculo do Fatorial

オープン 初心者向け
#4 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
enhancement Exercise good first issue
主要言語
JavaScript
スター
1
フォーク
0
PR マージ指標
30日以内にマージされた PR はありません

説明

```py
num = int(input("Number: "))
result = num

while num != 1:
num -= 1
result *= num

print("Resultado Fatorial: {}".format(result))
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

調査の方向性

The issue contains a Python script that calculates a factorial. The script likely has a bug in its logic or output formatting. Start by running the provided code to see its current behavior. Then, compare it to the expected factorial calculation (e.g., handling input 0 or 1). Modify the script in the repository's Python exercise files, test with a few inputs, and ensure the output matches the correct factorial results.

索引モデルが issue の本文から書いたものです。

評価

技術スタック
python
領域
cli
issue の種類
バグ
難易度
1/5
見積もり時間
1時間未満
活発さ
停滞
明瞭さ
明確に書かれている
初心者へのやさしさ
90/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。