For a positive integer n, we define a function f:f (n)

For a positive integer n, we define a function f:

f (n) = - 1 + 2 - 3 + .. + (- 1) nn

Your task is to calculate f (n) for a given integer n.

Input data
The only line contains a positive integer n (1 n 1015).

Output
Output f (n) in a single line.
with c++

Задать свой вопрос
1 ответ
include lt;iostreamgt;
using namespace std;
int main()

int n = 0, f = 0, t = 0;
cin gt;gt; n;
if (n lt;= 1015 amp;amp; n gt;= 1)
for (int i = 1; i lt;= n; ++i)
    t = -i;
if (i % 2 == 0)
t = абс(t);

cout lt;lt; t lt;lt; " ";
f += t;

else
cout lt;lt; "Error" lt;lt; endl;

cout lt;lt; endl lt;lt; "Res: " lt;lt; f;
return 0;


, оставишь ответ?
Имя:*
E-Mail:


Добро пожаловать!

Для того чтобы стать полноценным пользователем нашего портала, вам необходимо пройти регистрацию.
Зарегистрироваться
Создайте собственную учетную запить!

Пройти регистрацию
Авторизоваться
Уже зарегистрированны? А ну-ка живо авторизуйтесь!

Войти на сайт