cpp快速上手

2021/12/13 6:20:05

本文主要是介绍cpp快速上手,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

起因

在没有任何了解的csp的情况下,报了这个考试,还选的cpp。

现在看了题目,满肚子的后悔,一来是cpp语法不熟,二来是看样子我撑死做出两道题。

所以语法很重要。

头文件

头文件很重要,

#include <iostream>
#include <vector>
#include <set> 
#include <algorithm>
#include <unordered_map>
#include <string>
#include <cstring>
#include <math.h>
using namespace std;

const int INF = 0x3f3f3f3f;

输入输出

读取输入的整数

在保证以空格分割的情况下,cin >> a,就是读入一个数到a里。

cin >> a >> b >> c,逐个读入。

读取输入的字符串

直接使用cin流,只能拿到空格分割的字符串。

string s;
cin >> s;
cout << s;

使用getline,可以读取到空格。

int main() {
	string s;
	getline(cin, s);
	cout << s;
	return 0;
}

数据结构的操作

int main() {
	pair<int, int> a={1,2};
	vector<int> vec_a  = {1,2,3};
	vec_a.push_back(4);
	unordered_map<string, int> votes;
	pair<string, int> p = {"Alice", 5};
	votes.insert(p);
	cout << a.second << endl;
	cout << vec_a[0] << endl;
	cout << votes["Alice"] << endl;
	return 0;
}


这篇关于cpp快速上手的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程