Вопрос задан 01.05.2019 в 13:18. Предмет Информатика. Спрашивает Жирнов Влад.

Известны данные о стоимости каждого товара из группы. Найти общую стоимость трех товаров, которые

стоят дороже 1000рублей (количество таких товаров неизвестно)
0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Кузнецов Никита.
Var i,x,s:integer;
begin
writeln('Вводите стоимость товаров по одному');
while i<3 do
  begin
  readln(x);
  if x>1000 then
    begin
    s:=s+x;
    i:=i+1;
    end;
  end;
writeln('s=',s);
end.
0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

Calculating Total Cost of Items Priced Over 1000 Rubles

To find the total cost of three items priced over 1000 rubles each, we can use the available data on the prices of the items. Let's calculate the total cost based on the provided information.

Given Data: - Data on the prices of each item in the group is available. - We need to find the total cost of three items, each priced over 1000 rubles.

Solution

To calculate the total cost, we need to consider the prices of the items and select those that are priced over 1000 rubles. Since the specific prices of the items are not provided in the search results, we'll use the available information to guide our approach.

Based on the available snippets, we can see that there are mentions of prices and values, but the specific prices of the items are not directly provided. Therefore, without the exact prices of the items, it's not possible to calculate the total cost of three items priced over 1000 rubles.

If you have the specific prices of the items, please provide them, and I'd be happy to help you calculate the total cost.

If there's anything else you'd like to know or discuss, feel free to ask!

0 0

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика

Задать вопрос