В
Все
М
Математика
О
ОБЖ
У
Українська мова
Д
Другие предметы
Х
Химия
М
Музыка
Н
Немецкий язык
Б
Беларуская мова
Э
Экономика
Ф
Физика
Б
Биология
О
Окружающий мир
Р
Русский язык
У
Українська література
Ф
Французский язык
П
Психология
А
Алгебра
О
Обществознание
М
МХК
В
Видео-ответы
Г
География
П
Право
Г
Геометрия
А
Английский язык
И
Информатика
Қ
Қазақ тiлi
Л
Литература
И
История
oksyunya
oksyunya
06.09.2022 09:45 •  Информатика

ранати ти ИНФОРМАТИКА «РОМАН» и «НОРМА» В квадратах на рисунках заполните пустые клетки буквами H, 0, P, M, А так, чтобы в каждой строке, в каждом столбце и в каждой из двух диагоналей Квадрата встречались все эти буквы, причём каждая по одному разу. Нельзя ли, заполнив клетки одного квадрата, получить заполнения остальных квадратов автоматически?

Показать ответ
Ответ:
HomelessGod1
HomelessGod1
06.06.2023 09:30

import java.util.Scanner;

import java.util.ArrayList;

public class multi {

   public static void main(String[] args) {

       int counter = 0;

       ArrayList<Integer> arr = new ArrayList<>();

       Scanner scanner = new Scanner(System.in);

       for (int i = 1; i<=6; i++) {

           while (true) {

               System.out.print("Введите " + i + "-е значение: ");

               int v = Integer.parseInt(scanner.nextLine());

               

               if (v == 0) counter++;

               else counter = 0;

               if (i == 6 && counter >= 6) {

                   System.out.println("Все значения не могут быть равны 0!");

                   continue;

               }

               

               arr.add(v);

               break;

           }

       }

       System.out.println(arr);

       System.out.println(multiply(arr));

   }

   public static Integer multiply(ArrayList<Integer> arr) {

       int v = 0;

       for (int i : arr) {

           if (i != 0) {

               if (v == 0) v = i;

               else v *= i;

           }

       }

       return v;

   }

}

0,0(0 оценок)
Ответ:
Staz134
Staz134
12.05.2022 09:38

1. Подумать над алгоритмом
2. Вот сам алгоритм:
а. спросить у пользователя значения
б. расчитать ответ
в. выдать ответ на экран
3. Написать код в паскале
4. Исправить ошибки компиляции
5. Протестировать, вводить разные числа
6. обнаружила, что если вводить числа наугад ответ получается отрицательным иногда
7. Вставить код проверки введенных пользователем значений
8. убрать ошибки компиляции
9. протестировать
10. готово

 

А вот и сама программа:

 

program aerobus;
uses crt;
const TotalPlace = 160;
var businessPlaces, economyPlaces:integer;
businessPrice, economyPrice:real;
totalCharge:real;
a,b:integer;
correctInput:boolean;
begin
clrscr;
businessPlaces:=TotalPlace div 4;
economyPlaces:= TotalPlace - businessPlaces;
writeln('business places count: ', businessPlaces);
writeln('economy places count: ', economyPlaces);
correctInput:=false;
while not correctInput do
begin
write('Please Input Business Class Ticket Price: ');
readln(businessPrice);
if(businessPrice>0) then
begin
correctInput:=true;
end
else
begin
writeln('The price should be a positive number, please try again');
end;
end;
economyPrice:=businessPrice/2;
writeln('Economy Ticket Price is: ', economyPrice:0:2);
correctInput:=false;
while not correctInput do
begin
write('How many business tickets are left?: ');
readln(a);
if(a>=0) and (a<=businessPlaces)then correctInput:=true;
if(a<0) then
begin
writeln('Please input a positive number or 0, please try again');
end;
if(a>businessPlaces) then
begin
writeln('Please input a number which is less or equal to the tolal business place count, please try again');
end;
end;

correctInput:=false;
while not correctInput do
begin
write('How many economy tickets are left?: ');
readln(b);
if(b>=0) and (b<=economyPlaces)then correctInput:=true;
if(b<0) then
begin
writeln('Please input a positive number or 0, please try again');
end;
if(b>economyPlaces) then
begin
writeln('Please input a number which is less or equal to the tolal economy place count, please try again');
end;

end;
totalCharge:=(businessPlaces-a)*businessPrice;
totalCharge:=totalCharge+(economyPlaces-b)*economyPrice;
writeln('The total charge is:', totalCharge:0:2);
writeln;
writeln('Press enter to exit');
readln;
end.

 

0,0(0 оценок)
Популярные вопросы: Информатика
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота