[알고리즘] 백준 14909 - 양수 개수 세기 (C++) [문제 링크] : https://www.acmicpc.net/problem/14909#include using namespace std;int main(){ int N = 0, inp; while(true){ cin >> inp; if(cin.eof() == 1){ break; } if(inp > 0){ N++; } } cout 알고리즘 2025.03.23