hi, i'm a novice in java and my problem is i want my output string formatted like the one below, but my output using the /n is, it shows the /n string and the string is continous. i want the "reasons:" text to be in the next line. here's my code:
sOrderStatus = "Sorry, your order cannot be processed beause of the following /n";
sOrderStatus = sOrderStatus + "Reasons:";
thank you very much
sOrderStatus = "Sorry, your order cannot be processed beause of the following /n";
sOrderStatus = sOrderStatus + "Reasons:";
thank you very much