1 | A class (such as a "main routine") may also be implemented to have just one computational instance. |
2 | This application reads from standard input and counts number of characters which are then printed |
3 | class Count { |
4 | public static void main (String args[]) |
5 | throws java.io.IOException |
6 |
{ int count = 0;
|
7 | }} |