문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 수 나열하기1
// input : 1 3 5
// output : 13
// 설명 : 시작 값(a), 등차의 값(d), 몇 번째 인지를 나타내는 정수(n)이 입력
#include <iostream>
using namespace std;
int main()
{
int a, d, n;
cin >> a >> d >> n;
cout << (a + d * (n - 1));
return 0;
}