Ответ: Наче правильно
#include <iostream>
using namespace std;
template <typename T>
T twice(T x) {
return x * 2;
}
int main() {
cout << twice(2) << endl;
cout << twice(4) << endl;
return 0;
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ: Наче правильно
#include <iostream>
using namespace std;
template <typename T>
T twice(T x) {
return x * 2;
}
int main() {
cout << twice(2) << endl;
cout << twice(4) << endl;
return 0;
}
Объяснение: