1518: 1.3-18:等差数列末项计算
Memory Limit:64 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:658
Solved:514
Description
给出一个等差数列的前两项a1,a2,求第n项是多少。
Input
一行,包含三个整数a1,a2,n。-100 <= a1,a2 <= 100,0 < n <= 1000。
Output
一个整数,即第n项的值。
Sample Input Copy
1 4 100
Sample Output Copy
298
HINT
提示:等差数列的通项公式:an=a1+(n-1)d,a1为首项,d为公差。