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

Progressão Aritmética

未关闭
#3 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
enhancement Exercise good first issue
主要语言
JavaScript
星标
1
派生
0
PR 合并指标
30 天内没有已合并 PR

描述

```py

termo = int(input("Termo: "))
r = int(input("Razão: "))
max = int(input("Número: "))
result = termo

print("-" * 10)
while result != (termo + ( r * max )):
print(f"{result} → ", end = "")
result += r

print("FIM")
print("-" * 10)

```

贡献指南

这个仓库没有索引到贡献指南

调研方向

The issue contains a Python script for an arithmetic progression. The script likely has a logical error in the while loop condition. Start by running the script with sample inputs to see the output. Check the repository for similar exercises to understand the expected format. Modify the loop to correctly generate the progression sequence and ensure the output matches the intended pattern.

由索引模型根据 Issue 内容生成。

评估

技术栈
python
领域
cli
Issue 类型
缺陷
难度
1/5
预计耗时
1 小时以内
活跃度
停滞
描述清晰度
描述清楚
新手友好度
40/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。