Untitled

Anonymous
plain_text
03/31/2022 12:09 PM
524 B
16
Indexable
import java.io.*;
import java.util.Scanner;
import java.util.concurrent.*;

public class IO {
    public static void main(String[] args) {
        String s = new String();
        s = "zdravo";
      try {
          System.out.write(s.getBytes());
      }
      catch (IOException e) {
          e.printStackTrace();
      }
      finally {
            System.out.close();
      }

    }


}
Editor is loading...