Объяснение:
1) #include <iostream>
using namespace std;
int main()
{
int a, b;
cout<<"Enter number 1";
cin >> a;
cout<<"Enter number 2";
cin >> b;
int res = a + b;
cout << "Result - " << res << endl;
return 0;
}
1.1) К целочисленному типу
1.2)2 входных значения
1.3)1 результат
1.4)(я не понимаю какие стрелки)
1.5)A + B = RES
2) #include <iostream>
float speed, time;
cout<<"Enter speed";
cin >> speed;
cout<<"Enter time";
cin >> time;
int length = speed * time;
cout << "Length- " << length << endl;
2.1) К дробному типу
2.2)2 входных значения
2.3)1 результат
2.4)(я не понимаю какие стрелки)
2.5)S = V * t
3. Слово Integer
4. можно: Vasya СУ-27 @mail_ru
m11 Петя СУ_27 lenta.ru
m 1 Quo vadis СУ(27)
нельзя: 1m Митин брат _27 "Pes barbos"
5. b!
6. в)
Поделитесь своими знаниями, ответьте на вопрос:
Составить программу перевода английской меры длины дюйм в метры, если известно, что один дюйм равен 2, 54см.
Объяснение:
1) #include <iostream>
using namespace std;
int main()
{
int a, b;
cout<<"Enter number 1";
cin >> a;
cout<<"Enter number 2";
cin >> b;
int res = a + b;
cout << "Result - " << res << endl;
return 0;
}
1.1) К целочисленному типу
1.2)2 входных значения
1.3)1 результат
1.4)(я не понимаю какие стрелки)
1.5)A + B = RES
2) #include <iostream>
using namespace std;
int main()
{
float speed, time;
cout<<"Enter speed";
cin >> speed;
cout<<"Enter time";
cin >> time;
int length = speed * time;
cout << "Length- " << length << endl;
return 0;
}
2.1) К дробному типу
2.2)2 входных значения
2.3)1 результат
2.4)(я не понимаю какие стрелки)
2.5)S = V * t
3. Слово Integer
4. можно: Vasya СУ-27 @mail_ru
m11 Петя СУ_27 lenta.ru
m 1 Quo vadis СУ(27)
нельзя: 1m Митин брат _27 "Pes barbos"
5. b!
6. в)