• Программа получает с клавиатуры массив целых чисел и выводит на экран разность первого и предпоследнего элементов. Написать на C++ или составить блок-схему.

Ответы 1

  • Ответ:

    #include <iostream>

    using namespace std;

    int main() {

       int n;

       cout << "Enter the size of the array: ";

       cin >> n;

       int arr[n];

       cout << "Enter " << n << " integers: ";

       for (int i = 0; i < n; i++) {

           cin >> arr[i];

       }

       int difference = arr[0] - arr[n - 2];

       cout << "The difference between the first and penultimate element is: " << difference << endl;

       return 0;

    }

  • Добавить свой ответ

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years