Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 10821 - 정수의 개수(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/10821
정수의 개수를 세는 문제였습니다.
콤마의 갯수만 센 뒤, 1를 더해주면 수의 갯수를 구할 수 있었습니다.
자세한 것은 코드를 참고해주세요.
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <cstring>
#include <cmath>
using namespace std;
string x;
int ans = 0;
int main(){
cin.tie(0);
cout.tie(0);
cin >> x;
for(int i = 0; i < x.size(); i++){
if(x[i] == ',') ans++;
}
cout << ans + 1;
return 0;
}
질문 및 조언은 댓글을 남겨주세요
'백준' 카테고리의 다른 글
백준 1357 - 뒤집힌 뎃셈(C++) (0) | 2023.05.18 |
---|---|
백준 4470 - 줄번호(C++) (0) | 2023.05.18 |
백준 11098 - 첼시를 도와줘!(C++) (0) | 2023.05.18 |
백준 2857 - FBI(C++) (0) | 2023.05.18 |
백준 2711 - 오타맨 고창영(C++) (0) | 2023.05.16 |