yrstruly Posted May 3, 2009 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?
jeffman Posted May 3, 2009 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: %
jesh Posted May 4, 2009 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.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.