2775: 等差数列末项计算 摘要:解题思路:注意事项:参考代码:a , b , n = map(int,input().strip().split())print(a + (n - 1) * (b - a)) #等差数列公式: an …… 题解列表 2022年11月26日 0 点赞 0 评论 746 浏览 评分:9.9
编写题解 2775: 等差数列末项计算 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; int n; …… 题解列表 2022年09月02日 0 点赞 0 评论 455 浏览 评分:0.0