2020年10月5日
摘要: 1、怎么把bool输出true 和 false,而不是0、1 使用boolalpha 1 bool d = 1; 2 cout << boolalpha << d << endl; 2、如此简洁的代码 int gcb(int a, int b) { return b ? gcb(b, a % b) 阅读全文
posted @ 2020-10-05 22:52 Coderon 阅读(79) 评论(0) 推荐(0) 编辑