Smallest Even Multiple

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
Given a positive integer n, return the smallest positive integer that is a multiple of both 2 and n.
LeetCode Problem - 2413
class Solution {
// Method to find the smallest even multiple of n
public int smallestEvenMultiple(int n) {
// Initializing the answer with n
int ans = n;
// Iterating indefinitely until the smallest even multiple is found
while (true) {
// Checking if ans is a multiple of n and is even
if (ans % n == 0 && ans % 2 == 0) {
// Returning the smallest even multiple found
return ans;
}
// Incrementing ans for the next iteration
ans++;
}
}
}




