Untitled
unknown
plain_text
4 years ago
338 B
8
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...