摘要: Returns whether x is a normal value: i.e., whether it is neither infinity, NaN, zero or subnormal. 输出 阅读全文
posted @ 2019-05-20 23:43 anobscureretreat 阅读(245) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 22:39 anobscureretreat 阅读(1234) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 22:36 anobscureretreat 阅读(284) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 22:19 anobscureretreat 阅读(213) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 16:16 anobscureretreat 阅读(298) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 16:10 anobscureretreat 阅读(497) 评论(0) 推荐(0)
摘要: 安装好Xcode后,新建工程 选择command line tool 选择c语言 点击创建 可以设置运行平台版本 设置 设置c标准 去掉c++ 支持 打开编辑页面 运行 参考: https://www.jianshu.com/p/00bfbce6a490 阅读全文
posted @ 2019-05-20 12:03 anobscureretreat 阅读(210) 评论(0) 推荐(0)
摘要: /* towctrans example */ #include #include int main () { int i=0; wchar_t str[] = L"Test String.\n"; wchar_t c; wctype_t check = wctype("lower"); /* 小写类型 */ wctrans_t trans =... 阅读全文
posted @ 2019-05-20 11:48 anobscureretreat 阅读(603) 评论(0) 推荐(0)
摘要: 链接:https://pan.baidu.com/s/1AsESVIYsn9Lv6qz2TfROrQ 密码:6o63链接:https://pan.baidu.com/s/1eiGgRHfPTEERlHvEZ27kiA 密码:o7gu Beyond Compare4|Beyond Compare破解版 阅读全文
posted @ 2019-05-20 11:35 anobscureretreat 阅读(2413) 评论(1) 推荐(1)
摘要: 链接: https://pan.baidu.com/s/1yYxPo8nNv0PuOA1ZC9-F1w 提取码: v76g 注册码: BEGIN LICENSE KEY H1bJTd2SauPv5Garuaq0Ig43uqq5NJOEw94wxdZTpU-pFB9GmyPk677gJ vC1Ro6s 阅读全文
posted @ 2019-05-20 11:34 anobscureretreat 阅读(1770) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 11:10 anobscureretreat 阅读(433) 评论(0) 推荐(0)
摘要: /* //多继承 #include using namespace std; class Sofa { public: Sofa(); ~Sofa(); void sit() { coutweight = w; } int getWeight() { return this->weight;... 阅读全文
posted @ 2019-05-20 10:59 anobscureretreat 阅读(648) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 01:39 anobscureretreat 阅读(1062) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 01:31 anobscureretreat 阅读(567) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 01:12 anobscureretreat 阅读(713) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-20 00:51 anobscureretreat 阅读(367) 评论(0) 推荐(0)
摘要: code: 输出 阅读全文
posted @ 2019-05-20 00:47 anobscureretreat 阅读(481) 评论(0) 推荐(0)
摘要: // reverse_copy example #include // cout #include // reverse_copy #include // vector using namespace std; int main () { int myints[] ={1,2,3,4,5,6,7,8,9}; vector myvector; my... 阅读全文
posted @ 2019-05-20 00:41 anobscureretreat 阅读(291) 评论(0) 推荐(0)
摘要: // reverse algorithm example #include // std::cout #include // std::reverse #include // std::vector using namespace std; int main () { vector myvector; // set some values: f... 阅读全文
posted @ 2019-05-20 00:34 anobscureretreat 阅读(240) 评论(0) 推荐(0)