Yep, me again, remaining true to the thread. Anyway, I need some help on how to achieve the output on this program (if user enters 3 for n, output will be 1, -2, 4 and sum will be 3) I can't seem to figure out where to implement the * -2. Please help?
CODE
int n;
// ======
System.out.println("This program will take input for the value n");
System.out.println("and output the sequence.");
System.out.println("=======================================");
// ==============================================================
Scanner scannerObject = new Scanner(System.in);
// ===============================================
System.out.println("Please input an integer: ");
n = scannerObject.nextInt();
System.out.println("Integer entered = " +n);
// ==========================================
int ii;
for(ii = 1*-2;ii <= n;ii++)
System.out.println("Sequence is: "+ii);
}// main
I'll take whatever hints I can get!

Thanks.