You are viewing a single comment's thread. Return to all comments →
simple cpp:
for (int i = 0; i < n; i++){ if (mb < height[i]){ mb = height[i]; } } if (mb > k){ mb = mb - k; } else { mb = 0; } cout<<mb;
Seems like cookies are disabled on this browser, please enable them to open this website
The Hurdle Race
You are viewing a single comment's thread. Return to all comments →
simple cpp: