No entiendo porque me esta grabando los numeros separados con espacio y no retorna el carro?????
Alguien me podría echar una manita?
Código:
import java.io.*;
public class NUMEROS
{
public static void main (String agrs[]){
int i;
double Nums;
try{
FileOutputStream fsw = new FileOutputStream ("c:\\Num.txt");
DataOutputStream dsw = new DataOutputStream (fsw);
for (i=1; i<=2; i++){
Nums = Math.random() * 1000;
dsw.writeChars (Nums+"\n");
}
}
catch(IOException except){
}
}
}