yrstruly 0 Posted May 3, 2009 Report Share Posted May 3, 2009 HelloDoes anybody know of any sources of codes that i can find somewhere, which does the following?Write a program that prints all even numbers from 2 to 100 inclusive? Quote Link to post Share on other sites
jeffman 86 Posted May 3, 2009 Report Share Posted May 3, 2009 You don't need special code for that. You need to make a loop. You need to print. And you need to understand the modulo operator, sometimes called the remainder operator. It works the same in all languages, and telling odd numbers from even is its most common use. It looks like a percent sign: % Quote Link to post Share on other sites
jesh 0 Posted May 4, 2009 Report Share Posted May 4, 2009 For a setup where you need to test whether a number is odd or even, the modulo operator that Dad mentions is the way to go. For a simple setup like you've described, you could also use a for loop where the iterator is initialized at 2 and is incremented by two over each iteration. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.