| 3 | #include <algorithm> |
| 4 | |
| 5 | int main() { |
| 6 | std::string name = "KeyZen"; |
| 7 | int score = 0; |
| 8 | |
| 9 | for (int i = 0; i < 3; i++) { |
| 10 | score += 10; |
| 11 | std::cout << "round " << i + 1 << ": score = " << score << "\n"; |
| 12 | } |
| 13 | |
| 14 | std::vector<int> nums = {3, 1, 4, 1, 5, 9}; |
| 15 | std::sort(nums.begin(), nums.end()); |
| 16 | |
| 17 | for (int n : nums) { |
| 18 | std::cout << n << " "; |
| 19 | } |
| 20 | std::cout << "\n"; |
| 21 | std::cout << "Hello from " << name << "!\n"; |
| 22 | return 0; |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected