Last active
March 4, 2022 07:03
-
-
Save btmxh/1ebf913b32ce76a018b57d702a0127a2 to your computer and use it in GitHub Desktop.
cpp boilerplate for IT class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
//Bai cua nhom: | |
template<typename T> | |
inline T input(const char* help) { | |
T value; | |
std::cout << help; std::cin >> value; | |
return value; | |
} | |
int main() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment