Posted by: Chyne on: October 19, 2008
Last week, I went to Jakarta for system installation and this trip will be the last trip for me in this company. I spent four days at there from 14th October to 17th October and the system installation was going smooth. I felt grateful with the entire installation process especially the entire installation was done [...]
Posted by: Chyne on: October 19, 2008
package Exercises;
public class Asterisks_d {
public static void main(String[] args) {
// initialization phase (row and column)
int i;
int j;
// loop for row
for (i = 1; i<= 10; i++) {
System.out.println();
// loop for spaces
for (int k = 10; k>i; k–) {
System.out.print(‘ ‘);
} // end for loop for spaces
// loop for column
for (j = 1; j <= [...]