KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > java > hints > BinaryOperator


1 package org.netbeans.test.java.hints;
2
3 public class BinaryOperator {
4     
5     public BinaryOperator() {
6     }
7     
8     public static void main(String JavaDoc[] args) {
9         int x;
10         
11         System.err.println(args[x+p]);
12         System.err.println(args[p+x]);
13         System.err.println(args[p*x]);
14         System.err.println(args[p/x]);
15     }
16 }
17
Popular Tags