g++ -std=c++11 to_string.cpp // #include <string> #include <iostream> int main() { std::string res; bool b = true ; res = std::to_string(b); std::cout ...
確定! 回上一頁