Advertisement
Josif_tepe

Untitled

Mar 23rd, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. import java.io.*;
  2. public class Main {
  3.  
  4.     public static void main(String[] args) {
  5.         FileOutputStream out = null;
  6.         try {
  7.             out = new FileOutputStream("out.txt");
  8.             for(int i = 32; i <= 127; i++) {
  9.                 out.write(i);
  10.             }
  11.         }
  12.         catch (IOException ex) {
  13.             System.out.println(ex);
  14.         }
  15.  
  16.  
  17.     }
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement