This is a very simple problem, alnost certainly a homework problem, and you should make an effort to answer it yourself.
Chat with our AI personalities
for(int i = 1; i < 100; i+=2) { System.out.println(i); }
Add the numbers into one variable as you read them in. But if you prefer, you can read the numbers into an array and then use a loop to add the numbers together.
public class sum { public static void main(String args[]){ int sum=0; for(int i=1;i<=10;i++){ sum=sum+i; } System.out.println(sum); } }
int i, sum = 0; for (i=0; i<20; i+=2) sum+=i;
$n = 10*(1+10)/2;