Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
条件を満たしている限り、要素 v[i] を 1 回カウントしたい。
ループを開始する前にカウンター変数を作成し、条件が満たされた後にインクリメントします。
int count = 0; for(int i = 0; i < m; i++){ if((v[i] - p) < 3 ){ count++; p = i; } }