2:59 pm GMT
Examples
Examples » Java
/**
* Java example for GeSHi
*/
import javax.swing.JOptionPane;
public class Foo {
public static void main ( String[] args ) {
JOptionPane.showMessageDialog(null, "hello, world!");
int n = args[0];
for ( int i = 0; i < n; i++ )
{
System.out.println(i);
}
}
}
This category contains 2
examples, and has been viewed 50146 times.
- Array Set - An example of the ArraySet ADT in Java (14954 views)
- Simple counter - A simple Java example (12210 views)
|