Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class Doska{
  2.     public static void main(String[] args){
  3.     char c = 'b';
  4.     int b = 1;
  5.     int by = c;
  6.     b = --b;
  7.     by = by-96;
  8.     System.out.print(b);
  9.     System.out.print(" ");
  10.     System.out.print(by);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement