Entries from 2022-07-27 to 1 day

範囲for文

C++

範囲for文というループの書き方を知らなかったのでメモ. 参考 atcoder.jp 上記サイトからの引用 #include <bits/stdc++.h> using namespace std; int main() { vector<int> a = {1, 3, 2, 5}; for (int x : a) { cout << x << endl; } } 1 3 2 5 範囲for文はコンテナと呼ばれる</int></bits/stdc++.h>…