New question. How can i make a variable show two other variables with quotes in between. Here's what I'm trying to do.
addn = ((n1*d2) + (n2*d1));
addd = (d1*n2);
out.println(+addn);
out.println(+addd);
addfrac = addn +"/" addd; <----- is where i'm trying to pull it
off but it's not working
If it doesn't make sense, tell me and I'll try to explain better.