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