Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.*;
- public class Main {
- public static void main(String[] args) {
- FileOutputStream out = null;
- try {
- out = new FileOutputStream("out.txt");
- for(int i = 32; i <= 127; i++) {
- out.write(i);
- }
- }
- catch (IOException ex) {
- System.out.println(ex);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement