output
Sir,I am experiencing some problems with the output of this program.I got some useful help this website,but the output of the program isn't producing what it should.let me explain the output below is what happen when the program is run.
Hardware Items
Code Description Unit Price
K16 Wood screws,brass,20mm,50 grams $ 7.75
D24 Wood glue,clear,1 liter,350 grams $ 5.5
M93 Sandpaper,fine grade,50 grams $ 10.25
M94 Sandpaper,fine grade,60 grams $ 14.75
B21 Claw Hammer,1500 grams $ 13.5
B35 Garden Shovel,2200 grams $ 15
A10 Garden Hose,2100 grams $ 10.25
A45 Hand Saw,1000 grams $ 12.75
C51 Garden Fork,2400 grams $ 14.5
place your order!
NAME:john smith
ADDRESS-1:20 rodeo street
ADDRESS-2:london
ADDRESS-3:england
POST CODE:3587
Code:d14
Quantity: 3
Is there another Customer order?(yes/No) :yes
Code:
what should really happen is that if I say yes for the dialogue the user inputs for name,address,and post code should come up followed by the code and the quantity.In other words it should process a number of orders of different names and addresses if yes is selected until the user enters no.can you help me with the code, the program is given below.Thank you!
import java.util.*;
import java.text.*;
import java.util.Scanner;
class HardwareItems
{
String code;
String description;
double price;
HardwareItems(String code,String description,double price){
this.code=code;
this.description=description;
this.price=price;
}
public String getCode(){
return code;
}
public String getDescription(){
return description;
}
public double getPrice(){
return price;
}
public static void main(String []args){
ArrayList<HardwareItems> list=new ArrayList<HardwareItems>();
list.add(new HardwareItems("K16","Wood screws,brass,20mm,50 grams",7.75));
list.add(new HardwareItems("D24","Wood glue,clear,1 liter,350 grams",5.50));
list.add(new HardwareItems("M93","Sandpaper,fine grade,50 grams",10.25));
list.add(new HardwareItems("M94","Sandpaper,fine grade,60 grams",14.75));
list.add(new HardwareItems("B21","Claw Hammer,1500 grams",13.50));
list.add(new HardwareItems("B35","Garden Shovel,2200 grams",15.00));
list.add(new HardwareItems("A10","Garden Hose,2100 grams",10.25));
list.add(new HardwareItems("A45","Hand Saw,1000 grams",12.75));
list.add(new HardwareItems("C51","Garden Fork,2400 grams",14.50));
DecimalFormat df=new DecimalFormat("$ ##.##");
System.out.println("Hardware Items");
System.out.println();
System.out.println("Code "+" Description "+" Unit Price ");
for(HardwareItems e : list){
System.out.println(e.getCode()+"\t"+e.getDescription()+"\t"+df.format(e.getPrice()));
}
Scanner in=new Scanner (System .in);
System.out.println("place your order!");
System.out.print("NAME:");
String l=in.nextLine();
System.out.print("ADDRESS-1:");
String m=in.nextLine();
System.out.print("ADDRESS-2:");
String n=in.nextLine();
System.out.print("ADDRESS-3:");
String o=in.nextLine();
System.out.print("POST CODE:");
String p=in.nextLine();
Scanner input=new Scanner(System.in);
System.out.print("Code:" );
String code=input.next();
System.out.print("Quantity: ");
int quantity=input.nextInt();
String check="";
while(!check.equals("no")){
System.out.print("Is there another Customer order?(yes/No) :");
check=input.next();
if(check.equals("yes")){
System.out.print("Code:" );
code=input.next();
System.out.print("Quantity: ");
quantity=input.nextInt();
}
else{
break;
}
}
}
}
View Answers
Related Tutorials/Questions & Answers:
outputoutput Sir,I am experiencing some problems with the
output of this program.I got some useful help this website,but the
output of the program isn't producing what it should.let me explain the
output below is what happen when
Output of flexOutput of flex hi.......
please provide the name of the
output file.
What is the
output of flex applications?
please rply ASAP........
Thanks
Advertisements
output variableoutput variable if i want to print
output of three variables when i wrote the code e.g SYStem.out.PRINTln(answer + answer1 + answer 2) only
output of answer is getting printed out? can you help
triangle outputtriangle output program to get the following
output:
*
*
Hi Friend,
Please specify the pattern properly.ADS_TO_REPLACE_1
Thanks
What is the output if....What is the
output if.... Here is my code. what is the
output...;When we put 50 as a lower limit value,
output comes:
(adsbygoogle... violation.
After the catch block
When we put 150 as a lower limit value,
output What will be the Output?What will be the
Output? int[] number = {5,3,6,10,1}
int temp;
for (int i=0; inumbers[j])
{
temp=numbers[i];
numbers[i]=numbers[j]
number[j]=temp
output of the programoutput of the program public static int sum(List list)
{
int sum = 0;
for ( Iterator iter = list.iterator(); iter.hasNext(); )
{
int i = ((Integer)iter.next()).intValue();
sum += i;
}
return sum
xml outputxml output generate an xml
output in the following format
<FileCount>
<DOC>AA
<RTF>BB
<PDF>CC
<Total>DD
where AA=total number of .DOC files found
BB=total number of .RTF files found,etc
output erroroutput error this is my program
import java.io.*;
public class separate
{
public static void main(String[] args)throws IOException...];
for (k=0;k
}
}
if i enter "my name" as the input the
output what is the output?what is the
output? public class MyAr{
public static void main(String argv[])
{
int[] i=new int[5];
System.out.println(i[5]);
}
}
It gives ArrayIndexOutOfBoundsException as you haven't add element to array.
Correct
input output Input And
Output
Introduction
The Java I/O means Java Input/
Output and is a part... used for writes byte to
output stream. It
implements a buffered
output ModuleNotFoundError: No module named 'output'ModuleNotFoundError: No module named '
output' Hi,
My Python... '
output'
How to remove the ModuleNotFoundError: No module named '
output'... to install padas library.
You can install
output python with following command
Data input & output StreamData input &
output Stream Explain Data Input Stream and Data
Output... stream in a machine-independent way.
A data
output stream lets an application write primitive Java data types to an
output stream in a portable way
Output Encoding - JSP-ServletOutput Encoding From security vulnerability perspective, we?d like to perform
output encoding of special characters (ex: < > ? ? % ; ( ) & +) on JSP while displaying pages.How can this be achieved ? Can we achieve
Input and Output packageInput and
Output package Hi guys,
My professor used input and
output... she used
in.readint()
out.writeln() commands to read input and print
output.
she created two new objects directly to use this statements.
/* input and
output Object Output StreamObject
Output Stream Can anyone decode the data from a file which is written by ObjectOutputStream??
I want to know if this is a secure way to write protected data without encryption
output using SQL output using SQL how to get ( 15 march 2011) and (15/03/2011)
output using SQL
Use the following queries to get the data from database in the given format.
For (15 march 2011) format:
SELECT DATE_FORMAT(dob, '%d
output java - Java Beginnersoutput java public static int secret(int one)
{
int i;
int...;
}
a. what is the
output of the ff. java statement:?
i. System.out.println (secret...? Hello
Are you beginner?
Ok, The first
Output is 125
Error output - JSP-ServletError output Can anyone please assist me; The printed
output should be:
The product is 10. But instead of it I got; The product is undefined.
Can anyone trace what went wrong of my code pls
output error - JSP-Servletoutput error /*hi friends, the given below is my servlet program error? How can i solve this problem? */
HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception
input output in javainput
output in java java program using filereader and filewriter
Hi Friend,
Try the following code:
import java.io.*;
class FileInputStreamAndFileOutputStream
{
public static void main(String[] args) throws
Handling transformation output
Handling transformation
output
Handling transformation
output
After passing xml and xsl sheets , we need to handle
output ,after
transformation
ModuleNotFoundError: No module named 'PLP-Output'ModuleNotFoundError: No module named 'PLP-
Output' Hi,
My Python... 'PLP-
Output'
How to remove the ModuleNotFoundError: No module named 'PLP-
Output' error?
Thanks
Hi,
In your python environment you
ModuleNotFoundError: No module named 'PLP-Output'ModuleNotFoundError: No module named 'PLP-
Output' Hi,
My Python... 'PLP-
Output'
How to remove the ModuleNotFoundError: No module named 'PLP-
Output' error?
Thanks
Hi,
In your python environment you
XSLT Output Types;
}
Output Types
The xsl:
output element lets you specify how to generate result
output.
Although it is not required to specify the type of
output but an XSLT... of the
output
element.
The xsl:
output element is a top-level element
servlets output to jsp - JSP-Servletservlets
output to jsp hey i have writing a code lately and wanted to print the
output to the jsp page from the servlet.the servlet would read the command prompt n thn return the
output as string to the jsp page
here
save output in multiple text filessave
output in multiple text files Hi..I'm getting problem to store the
output of this php code into multiple text files. Can anyone sugeest.
Here... = $dom->getElementsByTagName('a');
foreach ($links as $link){
$
output STACK - WHY THE OUTPUT COMES LIKE THIS?STACK - WHY THE
OUTPUT COMES LIKE THIS? //: holding/StackTest.java...(!stack.empty())
System.out.print(stack.pop() + " ");
}
} /*
Output:
fleas has dog My
WHY THE
OUTPUT COMES LIKE