mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
10 lines
197 B
C++
10 lines
197 B
C++
#include <iostream>
|
|
|
|
template <typename T> T potroj(T x) { return x * 3; }
|
|
|
|
int main() {
|
|
std::cout << potroj(7) << '\n';
|
|
std::cout << potroj(2.5) << '\n';
|
|
std::cout << potroj('A') << '\n';
|
|
}
|