C++
文章平均质量分 75
iewlhf
(。・_・)/~~~
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
关于sync_with_stdio(false);
tietie是将两个stream绑定的函数,空参数的话返回当前的输出流指针#include #include ///////////////////////////SubMain//////////////////////////////////int main(int argc, char *argv[]){ std::ostream *prevstr;转载 2016-05-29 21:43:11 · 1678 阅读 · 0 评论 -
C++生成随机数
#include #include #include using namespace std; int main() { srand((unsigned)time(NULL)); for(int i = 0; i < 10;i++ ) cout << rand() << '\t'; cout转载 2016-05-30 20:33:28 · 308 阅读 · 0 评论
分享