Есть ответ 👍

Дано описание переменных. Выбери верные ответы.

var
int1, int3: integer;
d:string ;
M: char;
begin

1.Имена переменных
2.Типы данных

258
353
Посмотреть ответы 2

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

р0000
4,7(19 оценок)

Имена переменных:

int1, int3, d, M

Типы данных:

integer, string, char


Хватит плодить однотипные вопросы. ответ уже был дан в предыдущей теме. #include < iostream> #include < windows.h> int main() {       int v;       double s, t, t1, tmpt,tmpt1,b,tmpt3;       std: : cout < < "v - km\h: ";       std: : cin > > v;       std: : cout < < "\ns - km: ";       std: : cin > > s;       std: : cout < < "\nt - hour: ";       std: : cin > > t;       std: : cout < < "\nt1 - minut: ";       std: : cin > > t1;       tmpt = s / v;       t -= tmpt;       tmpt3 = t - tmpt;       if (tmpt3 < t)       {             std: : cout < < "edem bez ostanovok" < < std: : endl;             system("pause");             exit(1);       }       tmpt1 = (t * 60) / t1;       b = (double)(int)tmpt1;       std: : cout < < "kol ostanovok: " < < b < < std: : endl;       system("pause"); }

Популярно: Информатика