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