Untitled

 avatar
unknown
plain_text
3 years ago
338 B
5
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";
   byte[] b = s.getBytes();
        for(int i = 0; i < b.length; i++) {
            System.out.write(b[i]);
        }
        System.out.flush();
    }
}
Editor is loading...