01 2020 档案

摘要:https://jingyan.baidu.com/article/49711c616b8a1ffa441b7cdc.html 阅读全文
posted @ 2020-01-07 21:04 ShineLe 阅读(369) 评论(0) 推荐(0) 编辑
摘要:程序末尾添加 system("pause"); 阅读全文
posted @ 2020-01-07 15:33 ShineLe 阅读(241) 评论(0) 推荐(0) 编辑
摘要:按 “F5”(开始调试的快捷键)运行到下个断点处。 阅读全文
posted @ 2020-01-07 15:22 ShineLe 阅读(297) 评论(0) 推荐(0) 编辑
摘要:1、使用前应先包含头文件string.h,有的是cstring #include<string> 这样才能正确的cin和cout字符串。 cin时,是按照空格、TAB和换行进行分割的 例如,输入Hello World 使用cin输入,监视输入的对象,可以看到,是分Hello 和World两次cin的 阅读全文
posted @ 2020-01-07 15:18 ShineLe 阅读(410) 评论(0) 推荐(0) 编辑
摘要:菜单栏 “工具”->选项->环境->常规 阅读全文
posted @ 2020-01-05 21:44 ShineLe 阅读(361) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/glw0223/article/details/93195009 阅读全文
posted @ 2020-01-05 21:38 ShineLe 阅读(1077) 评论(0) 推荐(0) 编辑
摘要://创建 int **a=new int *[n]; for(i=0;i<n;i++) a[i]=new int[n]; // …… // 删除 for(i=0;i<n;i++) delete [] a[i]; delete [] a; 阅读全文
posted @ 2020-01-05 20:52 ShineLe 阅读(477) 评论(0) 推荐(0) 编辑
摘要:在第一行#include<iostream>下边一行加上一句 using namespace std; 阅读全文
posted @ 2020-01-04 13:59 ShineLe 阅读(836) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示