삼성 코딩테스트를 위한 여러가지 입력 방법
2023. 7. 1. 16:43ㆍ자료구조 및 알고리즘
728x90
[참고자료]
https://dbstndi6316.tistory.com/33
0629 오늘 알아갔던 입력 방법
몇 개를 받는지 모르고 한글자씩 입력받기
ex) 띄어쓰기 없이 12345 입력했을때 한글자씩 입력받는것
#include <iostream>
#include <string>
using namespace std;
int temp = 0;
int main() {
string a;
cin >> a;
for (int i = 0; i < a.size(); i++) {
temp += a[i] - '0';
}
return 0;
}
728x90