OneCompiler

Programming

1632

Example heading with h2 size

Example heading with h3 size

Following is sample java code.

int cups[];
cups= new int[4];
for(int i=0; i< 4; i++){
cups[i]= i+i;
}
for(int i=0; i< 4; i++) {
  
    System.out.println(cups[i]);
}