Untitled
Anonymous
plain_text
03/31/2022 12:04 PM
452 B
17
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...