камидь
29.09.2022 22:46

20 мин осталось Consider below HTML document and write appropriate CSS rules that will change the appearance of a web page as shown in figure below.

Add Customer

Name:

Email:

Customers

Name:

Gofur Gulom

Email:

[email protected]

Below are some hints to guide you through your work.

Default font of the entire web page must be Arial or any other available sans-serif font

The container class should be centered using margin and its maximum width must be 50em

All the text inside form and h2 must be aligned to the center. Margins of these components should be set to 10px

Default margin of dl must be set to 0. dt and dd must be in the same line. dt should have a bold font and a right margin of 5px.

Padding and margin of add and customers classes should be set to 5px, their borders must be solid grey with 1px thickness.

The customers class should be a Flexbox which wraps its items and spaces them evenly across the main axis

The customer class should have a width of 200px, margin and padding should be set to 10px. Top and bottom paddings should be set to 20px. Its border must be dashed with light grey color.


20 мин осталось Consider below HTML document and write appropriate CSS rules that will change the ap
20 мин осталось Consider below HTML document and write appropriate CSS rules that will change the ap

Нажмите на рекламу ниже и сразу увидите ответ
Популярные вопросы:
Ответ:
LebedevAleksand
18.10.2021 21:54
// PascalABC.NET 3.1, сборка 1201 от 18.03.2016
begin
  var k:=0;
  var n:=ReadInteger();
  var nmax:=0;
  while n<>0 do begin
    Inc(k);
    if n mod 10 = 0 then
      if n>nmax then nmax:=n;
    n:=ReadInteger()  
    end;
  var cntrl:=ReadInteger();
  Writeln('Получено ',k,' чисел');
  Writeln('Полученное контрольное значение: ',cntrl);
  Writeln('Вычисленное контрольное значение: ',nmax);
  if cntrl=nmax then Writeln('Контроль пройден')
  else Writeln('Контроль не пройден')
end.

Тестовое решение:
53
16
40
9
10
32
74
0
40
Получено 7 чисел
Полученное контрольное значение: 40
Вычисленное контрольное значение: 40
Контроль пройден
0,0(0 оценок)
Ответ:
ggf6fr
12.03.2020 20:01
Если считать отрицательные трехзначные, то сумма таких чисел в диапазонах от -999 до -100 и от 100 до 999 будет равна 0. Для только положительных:

//c циклом for
var s,i:integer;
begin
  for i:=100 to 999 do
    if i mod 77 = 0 then s:=s+i;
  writeln('Сумма трехзначных кратных 77: ',s);
end.

Тестовое решение:
Сумма трехзначных кратных 77: 5929

// с циклом while
var s,i:integer;
begin
  i:=100;
  while i<=999 do begin
    if i mod 77 = 0 then s:=s+i;
    i:=i+1;
  end;
  writeln('Сумма трехзначных кратных 77: ',s);
end.
0,0(0 оценок)
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота