15 03 2014
import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.Scanner; import javax.swing.JOptionPane; public class IO_Yazma2 { public static void main(String[] args) throws IOException { FileWriter f = new FileWriter(“test.txt”); BufferedWriter out = new BufferedWriter(f); boolean yk=true; Scanner sc = new Scanner(System.in); do { String str=””; str= str + JOptionPane.showInputDialog(null, “Numara Giriniz”, “Öğrenci No”,1); str=str+”#”; str= str + […]