Printing all Odd Numbers between two numbers
Please comment the code in the comments section, it will be added to this post.
Login/Signup to comment
Please comment the code in the comments section, it will be added to this post.
Login/Signup to comment
Get Hiring Updates right in your inbox from PrepInsta
for(int i=m;i<=n;i++)
{
if(i%2!=0)
System.out.print(i);
}