#include <iostream> #include <cstdlib> #include <ctime> int main() { using namespace std; cout << "Enter size of array: "; int N; cin >> N; int * ARR = new int[N]; srand(time(0)); int i; for (i = 0; i < N; ++i) ARR[i] = rand() % 100 + 1;
cout << "Here is an original array:\n"; for (i = 0; i < N; ++i) cout << ARR[i] << " "; cout << endl;
int temp = ARR[N - 1]; for (i = N - 1; i > 0; --i) ARR[i] = ARR[i - 1]; ARR[0] = temp;
cout << "\nHere is a new array:\n"; for (i = 0; i < N; ++i) cout << ARR[i] << " "; cout << endl;
#include <cstdlib>
#include <ctime>
int main()
{
using namespace std;
cout << "Enter size of array: ";
int N;
cin >> N;
int * ARR = new int[N];
srand(time(0));
int i;
for (i = 0; i < N; ++i)
ARR[i] = rand() % 100 + 1;
cout << "Here is an original array:\n";
for (i = 0; i < N; ++i)
cout << ARR[i] << " ";
cout << endl;
int temp = ARR[N - 1];
for (i = N - 1; i > 0; --i)
ARR[i] = ARR[i - 1];
ARR[0] = temp;
cout << "\nHere is a new array:\n";
for (i = 0; i < N; ++i)
cout << ARR[i] << " ";
cout << endl;
return 0;
}
price_notebook = float(input("Введите цену тетради: "))
number_notebook = int(input("Введите количество тетрадей: "))
price_cover = float(input("Введите цену обложки: "))
number_cover = int(input("Введите количество обложек: "))
price_pen = float(input("Введите цену ручки: "))
number_pen = int(input("Введите количество ручек: "))
full_price = ((price_notebook * number_notebook) + (price_cover * number_cover) + (price_pen * number_pen))
discount = full_price / 100 * 15
answer = full_price - discount
print("Полная стоимость: ", full_price, "\nСкидка: ", discount, "\nЦена с учетом скидки: ", answer, end='')
Объяснение:
price_notebook = float(input("Введите цену тетради: ")) // Вещественная (с плавающей точкой) переменная, хранящая цену тетради
number_notebook = int(input("Введите количество тетрадей: ")) // Целочисленная переменная, хранящая количество тетрадей
price_cover = float(input("Введите цену обложки: ")) // Вещественная (с плавающей точкой) переменная, хранящая цену обложки
number_cover = int(input("Введите количество обложек: ")) // Целочисленная переменная, хранящая количество обложек
price_pen = float(input("Введите цену ручки: ")) // Вещественная (с плавающей точкой) переменная, хранящая цену ручки
number_pen = int(input("Введите количество ручек: ")) // Целочисленная переменная, хранящая количество ручек
full_price = ((price_notebook * number_notebook) + (price_cover * number_cover) + (price_pen * number_pen)) // Переменная, хранящая полную стоимость всей покупки
discount = full_price / 100 * 15 // Переменная, хранящая 15-ти % скидку
answer = full_price - discount // Цена с учетом скидки
print("Полная стоимость: ", full_price, "\nСкидка: ", discount, "\nЦена с учетом скидки: ", answer, end='') // Вывод ответа