Advertisement
joseleonweb

Untitled

Feb 26th, 2021
753
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. public class WriteBytes {
  2.  
  3.     public static void main(String[] args) {
  4.         int b;
  5.         b = 'X';
  6.         System.out.write(b);  // Write a byte to the screen.
  7.         System.out.write('\n');
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement