How can i display "sum " and " difference " separate in java programming.?
-
im tryin to print this: SUM 2 2 4 SUM 3 3 6 DIFFERENCE 4 4 0 DIFFERENCE 5 4 1 I did get to work the SUM by typing this: // Prompt the user to get a value String formathd = " Operation Value1 Value2 Result \n"; System.out.println(formathd); // Real format for decimals String op = " SUM "; // Print Reals String formatf = op + "%10.2f %10.2f %10.2f \n"; sum sum But wen i m tryin to print the difference i cant do it...it does subract the numbers but instead of sayin diff says sum again..this is my code for my diff.. I THINK I HAVE PROBLEMS WITH THE STRING..BUT NOT SURE IF I CAN USE REPEATDELY THE STRING FORMAT IT GIVES ME ERRORS WEN I GO TO MY COMPILER..can anybody help me out please??? // Print Reals String format = " difference" ; String formatF = op + "% 5s %5d %5d %5d \n";
-
Answer:
Just do this String op; String formatf; op = "SUM" formatf = op + "%10.2f %10.2f %10.2f \n"; System.out.Println(formatf); op = "Difference"; formatf = op + "%10.2f %10.2f %10.2f \n"; System.out.Printlm(formatf);
Misiekj at Yahoo! Answers Visit the source
Related Q & A:
- How can I display older custom post outside the loop in Wordpress?Best solution by Quora
- How can I display data in a listview?Best solution by Stack Overflow
- How can I get a computer programming job?Best solution by Stack Overflow
- How can I separate a video into two parts?Best solution by Yahoo! Answers
- How can I get into programming?Best solution by cplus.about.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.