C++
金花
这个作者很懒,什么都没留下…
展开
-
测试本地C++编译是否可以的方法
测试本地C++编译是否可以的方法编写一个hello world#include <iostream>using namespace std;void main(){ cout<<"hello world"<<endl; }接着搜索再这个prompt内进入hello word 的地址,输入 cl hello.cpp (hello为文件命名)出现/out:hello.exehello.obj再输入hello.exe即可输出 hello wor原创 2021-10-08 09:40:30 · 241 阅读 · 0 评论 -
std::find()--用于查找vector中是否有这个数
std::vector<int>::iterator it; std::vector<int> values = {2,3,4,5}; it = std::find(values.begin(),values.end(),5); if(it == values.end()){ cout<<"not found"<<endl; }else{...原创 2020-03-03 09:14:38 · 1215 阅读 · 0 评论 -
【C++小白】如何用cmd运行C++程序
我是几乎零基础学习C++的,把最近学到的东西做一下分享:一、用cmd运行C++1.用文本文件写C++代码,保存为filename.cpp2.到filename.cpp所在的位置,用cmd 超快速打开该位置,输入cl filename.cpp 进行编译,生成.exe 与.obj文件3.在cmd 中输入filename.exe就可以运行了。二、超快速用cmd访问文件地址1.点击所在的文件...原创 2019-08-14 18:40:58 · 8606 阅读 · 0 评论 -
【C++】int main(int argc, char* argv[])读取并存储txt数组文件文件
最近在做文件读取的工作,因此将学习到的文件读取的代码分享一下:本代码的作用是读取文件中的矩阵。执行下面代码:#include <iostream>#include <fstream>#include <vector>#include <string>#include <sstream>#include <stdio....原创 2019-08-25 19:35:17 · 1686 阅读 · 0 评论