Some Icse Class 9 Programms

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Class sum - s

1
2
3
4
5
6
7
8
9

10
11
12

class sum
{
public static void main(int n)
{
int i=0;
int s=0;
for(i=i;i<=n;i++)
{System.out.println(i);
s=s+i;
}System.out.println("sum="+s);
}
}

1/1

Sep 10, 2015 5:43:03 PM

You might also like