import java.io. * ;import java.io. * ;public class TestIOApp public static void
Xuất bản: 03/11/2020 - Cập nhật: 03/11/2020 - Tác giả: Hà Anh
Câu Hỏi:
import java.io. * ;
Cho biết số byte mà đoạn chương trình sau ghi ra tập tin temp. txt
import java.io. * ;
public class TestIOApp {
public static void main(String args[]) throws IOException {
FileOutputStream outStream = new FileOutputStream("temp.txt");
String s = "test";
for (int i = 0; i
outStream.write(s.charAt(i));
outStream.close();
}
}
public class TestIOApp {
public static void main(String args[]) throws IOException {
FileOutputStream outStream = new FileOutputStream("temp.txt");
String s = "test";
for (int i = 0; i
outStream.write(s.charAt(i));
outStream.close();
}
}
Cho biết số byte mà đoạn chương trình sau ghi ra tập tin temp. txt
Câu hỏi trong đề: Bộ câu hỏi trắc nghiệm Lập trình mạng có đáp án - Phần 5
Đáp án và lời giải
đáp án đúng: B