unsigned long long int 型で作られたvectorを表示する。
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
void showlist(std::vector<unsigned long long int> list) { | |
for (unsigned long long int i = 0; i < list.size(); i++) { | |
std::cout << list[i] << ","; | |
} | |
std::cout << std::endl; | |
} |
コメント