Answers for "split vector in length 50"

C++
0

Split a number and store it in vector

#include <bits/stdc++.h>
using namespace std;
main() {
	int n = 1213456;
	vector<int> v;
	for(; n; n/=10)
  		v.push_back( n%10 );
	reverse(v.begin(), v.end());
	for (auto &i : v) cout<<i;
}
Posted by: Guest on March-27-2021

Browse Popular Code Answers by Language