R
RigasMinho
I have this line of code:
out.write(s+n);
which writes to a file the variables of whatever is in s and n.
For example
s= tree
n=home
the output file reads
treehome
how do i make it so theres a space in between tree and home?
out.write(s+n);
which writes to a file the variables of whatever is in s and n.
For example
s= tree
n=home
the output file reads
treehome
how do i make it so theres a space in between tree and home?