Algorithm
BOJ 10807 개수 세기 c++
BOJ 10807 개수 세기 c++ 백준 10807 개수 세기 c++ #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int n; int arr[105]; int target; int ans = 0; cin >> n; for (int i = 0; i > arr[i]; } cin >> target; for (int i = 0; i < n; i++) { if (arr[i] == target) ans++; } cout
2020. 8. 14. 20:43
최근댓글