1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | public class Main { public static void swap(String s1, String s2) { String tmp = s1; s1 = s2; s2 = tmp; } public static void main(String[] args) { String str1 = "hello"; String str2 = "world"; System.out.println(str1 + " " + str2); swap(str1, str2); System.out.println(str1 + " " + str2); } } |
cHVibGljIGNsYXNzIE1haW4gewogICAgCiAgICBwdWJsaWMgc3RhdGljIHZvaWQgc3dhcChTdHJpbmcgczEsIFN0cmluZyBzMikgewogICAgICAgIFN0cmluZyB0bXAgPSBzMTsKICAgICAgICBzMSA9IHMyOwogICAgICAgIHMyID0gdG1wOwogICAgfQogICAgCiAgICBwdWJsaWMgc3RhdGljIHZvaWQgbWFpbihTdHJpbmdbXSBhcmdzKSB7CiAgICAgICAgCiAgICAgICAgU3RyaW5nIHN0cjEgPSAiaGVsbG8iOwogICAgICAgIFN0cmluZyBzdHIyID0gIndvcmxkIjsKICAgICAgICAKICAgICAgICBTeXN0ZW0ub3V0LnByaW50bG4oc3RyMSArICIgIiArIHN0cjIpOwogICAgICAgIAogICAgICAgIHN3YXAoc3RyMSwgc3RyMik7CiAgICAgICAgCiAgICAgICAgU3lzdGVtLm91dC5wcmludGxuKHN0cjEgKyAiICIgKyBzdHIyKTsKICAgIH0KfQo=
-
upload with new input
-
result: Success time: 0.05s memory: 213312 kB returned value: 0
hello world hello world


