projects
/
IRC.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
change
[IRC.git]
/
Robust
/
src
/
Tests
/
Array.java
1
public class Array {
2
int a;
3
public static void main(String[] st) {
4
int a[]=new int[10];
5
int i=2;
6
a[i]=4;
7
System.printInt(a[2]);
8
System.printString("\n");
9
System.printInt(a.length);
10
System.printString("\n");
11
}
12
}