Programming Examples
Write a program to find the sum of all 3-digit even natural numbers.
Write a program to find the sum of all 3-digit even natural numbers.
Solution
class SumEven
{
public static void main(Strign arr[])
{
int i,s=0;
for(i=100;i<=998;i+=2)
{
s=s+i;
}
System.out.println(s);
}
}
Output