М
Молодежь
К
Компьютеры-и-электроника
Д
Дом-и-сад
С
Стиль-и-уход-за-собой
П
Праздники-и-традиции
Т
Транспорт
П
Путешествия
С
Семейная-жизнь
Ф
Философия-и-религия
Б
Без категории
М
Мир-работы
Х
Хобби-и-рукоделие
И
Искусство-и-развлечения
В
Взаимоотношения
З
Здоровье
К
Кулинария-и-гостеприимство
Ф
Финансы-и-бизнес
П
Питомцы-и-животные
О
Образование
О
Образование-и-коммуникации
мир276
мир276
18.01.2022 13:10 •  Информатика

Составьте программу в паскале ,. turbo pascal(циклы паскаль оператор for) 1)подсчитать произведение первых семнадцати целых положительных чисел.

👇
Ответ:
2703200096358246
2703200096358246
18.01.2022

1)

 

var
mas:array[1..17] of integer;
a:real;
b:integer;
c:integer;

begin
a:=1;
for b:=1 to 17 do
write;
for c:=1 to 17 do
begin
mas[b]:=c;
a:=mas[b]*a;
end;
write (a);
end.

 

2)

 

var
i:integer;

begin
for i:=-17 to 3 do
if i mod 4 = 0 then
writeln (i);
end.

4,5(83 оценок)
Открыть все ответы
Ответ:
timkoa
timkoa
18.01.2022

Объяснение:

No or not?

Grammar > Easily confused words > No or not?

из English Grammar Today

No and not are the two most common words we use to indicate negation. We use no before a noun phrase:

There’s no address on the envelope.

[parent to child]

No biscuits before dinner!

No decisions have been made.

We use not with any other phrase or clause:

It’s not often that you stop and think about the way you breathe.

Not suitable for children under 15.

Not surprisingly, it was a tense match but eventually the more experienced Australians won.

A:

Do you go cycling all year round?

B:

Not in the winter.

4,8(31 оценок)
Ответ:
айжан65
айжан65
18.01.2022

- DrinkActivity.java

TextView t ;

public void onCreate(Bundle savedInstanceState) {

           super.onCreate(savedInstanceState);

           setContentView(R.layout.activity_drink);

           t = (TextView)findViewById(R.id.TextView01);

           t.setOnClickListener((android.view.View.OnClickListener) this);

           }

public void onClick(View arg0) {

           t.setText("My text on click");  

           }

- activity_drink.xml

<LinearLayout  

   android:id="@+id/LinearLayout01"  

   android:layout_width="wrap_content"  

   android:layout_height="wrap_content">

</LinearLayout>

<ListView

   android:id="@+id/ListView01"

   android:layout_width="wrap_content"

   android:layout_height="match_parent" >

</ListView>

<LinearLayout  

   android:id="@+id/LinearLayout02"  

   android:layout_width="wrap_content"    

   android:layout_height="wrap_content">

</LinearLayout>

<TextView android:text="This is my first text"

android:id="@+id/TextView01"  

android:layout_width="wrap_content"  

android:textStyle="bold"

android:textSize="28sp"

android:editable="true"

android:clickable="true"

android:layout_height="wrap_content"

android:onClick="onClick">

</TextView>

Объяснение:

4,5(39 оценок)
Это интересно:
Новые ответы от MOGZ: Информатика
logo
Вход Регистрация
Что ты хочешь узнать?
Спроси Mozg
Открыть лучший ответ