Two Weight In Kilograms And Grams - Print Sum

Oct 22, 2014

Write a program which request two weight in kilograms and grams and print the sum of the weight, if the weight are 3kg 500g and 4kg 700g, your program should print 8kg 200g. this is what i have

Scanner input = new Scanner (System.in);
double weight, kg, g;
int sum;
System.out.println("Please enter weight");
weight = input.nextDouble();

[Code] .....

View Replies


ADVERTISEMENT

Input Weight In Kilograms And Grams And Print Sum

Oct 23, 2014

write a program which request two weight in kilograms and grams and print the sum of the weight, if the weight are 3kg 500g and 4kg 700g, the program should print 8kg 200. this is what I have so far and there is an error that I can't see:

Scanner input = new Scanner (System.in);
double weight, kg, grams;
int sum;
System.out.println("Please enter weight");
weight = input.nextDouble();

[Code] ....

um = (3kg5oog + 4kg700g)-(this line here is where the error is, it supposed to sum the two statement and print out 8kg 200g but i keep getting the red line, dont know where the error is, dont know if it is the coding or what, where error is, where the coding is not right, I am totally lost here right now, this is the if statement.

if(weight )

View Replies View Related

Convert Kilograms To Pounds With Dialog Box

Jan 17, 2015

I have managed to write the program where the user can input kg and the formula converts it into lbs. I have also written a program where I can get a dialog box to appear to ask the user to input the kg, but I can't figure out how to combine the two.

This program allows the user to input the kg, it converts it to lbs and then displays the output:

import java.util.Scanner;
import javax.swing.JOptionPane;
//creates a dialog box
 
public class convert {
public static void main(String args[]) {
 
[Code] ....

This program only brings in the first variable and the initial dialog box:

import java.util.Scanner;
import javax.swing.JOptionPane;
 //creates a dialog box
public class KgLbs {
public static void main(String args[]) {
 
[Code] ...

I have attached the actual assignment and what the program should look like.

View Replies View Related

Program For Weight Conversion GUI

Apr 21, 2015

I'm working on a Weight Conversion program. The code I have for the program is:

import java.util.*;
import java.awt.*;
import javax.swing.*;
public class Frame4a implements ActionListener {
public static void main(String[] args) {
JFrame f = new JFrame("Weight converter");
JPanel P = new JPanel(); // Make a JPanel;

[Code] .....

The errors I'm getting are:

Frame4a.java:33: error: class, interface, or enum expected
public void actionPerformed(ActionEvent e){
^
Frame4a.java:37: error: class, interface, or enum expected
double kp= Double.parseDouble(strkilo);

[Code] .....

View Replies View Related

Method From Main - Calculate Weight On Different Planets

Nov 8, 2014

I have to write a program to calculate my weight on different planets and to do that, I have to read in the surface gravity of all the planets from a file using a separate method from main

public static double[] readGravity() throws IOException
{
double[] surfaceGravity = new double[8];
Scanner readFile = new Scanner("gravity1.txt");
int i = 0;
while (readFile.hasNext()) {
surfaceGravity[i] = readFile.nextDouble();
i++;
}
return surfaceGravity;
}

I get this message in the while loop when I try to run the program:

java.util.InputMismatchException;
null (in java.util.Scanner)

View Replies View Related

Program That Will Determine Total Weight And Center Of Gravity

Sep 18, 2014

You have been given the job of writing a program to assist pilots who fly the Beechcraft Starship-‐‑1 executive aircraft.As with any airplane, it is essential that the pilot know the total weight of the loaded plane at takeoff and its center of gravity. If the plane weighs too much, it won'ʹt be able to lift off. If the center of gravity is outside the limits established for the plane, it might be impossible to control. Your task is to write a program that will determine the total weight and center of gravity of this plane

Inputs: The number of crew members, number of passengers, weight of the forward baggage compartment contents, aft baggage compartment contents weight, and the amount of fuel in gallons are to be accepted as INTEGER values in the order stated. Be sure the input values are within acceptable ranges

Outputs:You must echo the input values, annotated with their appropriate names,calculate and display the total weight, and the center of gravity.

View Replies View Related

Stored Function - Calculate Delivery Charges Given City And Weight

May 27, 2014

A stored function to calculate delivery charges given city and weight.
 
CREATE OR REPLACE FUNCTION CALCULATE_CHARGES
(
CITY IN VARCHAR2
, CHARGES IN NUMBER
, TOTAL IN NUMBER
) RETURN NUMBER AS
BEGIN
RETURN total:=city*charges;
END CALCULATE_CHARGES;

View Replies View Related

Calculate Shipping Charges Based On Product Weight In Pounds And Distance In Miles

Mar 26, 2014

I want to write a Utility to calculate the shipping charges based on the product weight in pounds and distance in miles. How we can go about it.

View Replies View Related

How To Make Print Employee Button To Print Info Of Other Class

Apr 12, 2014

Basically the class is supposed to have a static variable that keeps track of the number of companies (numberOfCompanies) that have been created and a static method that returns the value of this variable. I need to have a constructor and a method to addEmployee, a method to printCompany, and a toString method. The addEmployee method will check that there is only 1 salesperson, 2 designers, and 4 manufacturing persons at a time and will check that there are no more than 7 employees of the company.

The addEmployee method will return a String indicating what the error is (i.e. "There is already a sales person in this company") or a null if the employee was added. If attempting to name a third company, an error message will be shown. what i have so far but my print company mmethod returns null company class :in which i am obliged to use inputdialog because it says that it cannot return void when i use the showmeassage diaolog.

company class:

import java.util.ArrayList;
import javax.swing.JOptionPane;
public class Company {
private ArrayList<Employees> list ;
private static int numberOfCompanies;

[Code] ....

error message when print button is clicked:

Exception in thread "AWT-EventQueue-0" java.lang.RuntimeException: JOptionPane: parentComponent does not have a valid parent
at javax.swing.JOptionPane.createInternalFrame(Unknown Source)
at javax.swing.JOptionPane.showInternalOptionDialog(Unknown Source)
at javax.swing.JOptionPane.showInternalMessageDialog(Unknown Source)

[Code] ......

View Replies View Related

Two Threads - One Will Print Odd And Other Will Print Even Numbers In Sequence

Jul 25, 2014

I want to create two thread one thread will print odd number and another thread will print even number. but the number should be in a sequence like

1 2 3 4 5 6 7 8 9 10

View Replies View Related

How To Print First 5 Values

Nov 16, 2014

See the below:

public static void main() {
int i; // counter
  createDeck(); // this is a function call
  // Show the cards in the deck
System.out.println("The deck is as follows:");
for (i=0 ; i < CARDS_IN_DECK ; i++)

[code]....

It is now printing out the value of myDeck[5] but I need to print out first 5 values.

View Replies View Related

Unable To Print Sum Of First Row?

Dec 11, 2014

Java Code:

public class Lab12 {
public static int SumRow(int [][] a){
int row, column, sum=0;
for (row=0;row<2;row++ ) {
sum=0;
for (column=0;column<2;column++) {
sum=sum+a[row][column];

[Code]...

my output is

The sum of row 1 is: 3
The sum of coloumn 0 is: 5
The sum of coloumn 1 is: 5
The max of row 0 is: 4
The max of row 1 is: 2

it is supposed to print the sum of row o first ?

View Replies View Related

How To Print Before And After A Word

Nov 28, 2014

i have completed a code in java so that it can read spaces in a line but when i run it if i put Line 1 test test for example it will print : [ 3] spaces in Line1 test test what i want to print is [ 3] spaces in "Line1 test test" so the diferences is at " Is there any possible thing that i can do?

class Main
{
public static void main( String args[] )
{
System.out.print( "#Enter text : " );
String text = BIO.getString();
while ( ! text.equals( "END" ) )
{

[Code]...

View Replies View Related

Can't Print Number

Oct 14, 2014

I can't print the number that is supposed to come out

public class Skateboard {
private int wheels = 4;
private int trucks = 2;
private int bearings = 8;
private int gripTape = 1;
 
[code]....

How come sb1.assembly() doesn't return the values? :/

View Replies View Related

JSP :: How To Print Alphabets

Feb 24, 2014

I am trying to print alphabets from A to F using <c:forEach>

<c:set var="ctr" value="${optListSize}"></c:set> //optListSize is the size of an arraylist
<c:forEach begin="65" end="${ctr}" varStatus="loop" step="1">
<c:out value="<%=String.fromCharCode(64+${ctr})%>"></c:out>
</c:forEach>

I tried the above code but it gives an error. How to go about printing A, B, C, D... incrementally

View Replies View Related

How To Print Out First 6 Character Of Last Name

Feb 20, 2015

How to i print out the first 6 character of a last name even if the last name is and X like Malcolm X or Sung Li. X and Li being the last names

View Replies View Related

How To Print Big Integer Using For Loop

Mar 6, 2015

I amtrying to iterate a value of L,R both are range of BigInteger but its not working

BigInteger L=in.nextBigInteger();
BigInteger R=in.nextBigInteger();
for (BigInteger bi =L;
bi<=bi.compareTo(R);
bi = bi.add(BigInteger.ONE)) {

//Task to do with Numbers
}

I am trying to iterate a for loop in range of L and R but its not working

View Replies View Related

Print A Diamond Using For-loop?

Mar 26, 2014

I am currently trying to print a Diamond using for-loops but I seem to be confusing my self / over-complicating it.

This is what I have so far [URL]). When I run the code I get [URL].

I want to duplicate it on to the other side but I can't seem to be able to figure out a working for-loop to print it out.

Also, is there a faster/efficient method of doing something like this?

View Replies View Related

How To Print A Different Statement In If Else Structure

Feb 6, 2015

Implement a Las Vegas slot machine! The machine works as follows. First, it generates three random integers (use import java.lang.Math.*; then call Math.random()*7 to generate a random number between [a,b)) that are in the range of 0-7. Once the numbers are generated, the following rules are used to determine the prize:

- If all three numbers are equal to 7, you are winning $1,000,
- If all three numbers are equal, but not equal to 7, you are winning $500,
- If two of the numbers are equal to 7 and the third one is six, you are winning $400,
- If two numbers are equal, you are winning $100,
- Otherwise you are not winning anything.

And for that I wrote:

import java.lang.Math;

public class Assn1_2150130 {
public static void main(String[] args) {
// Generate three random signle-digit integar from 0-7.
int n1 = (int)(Math.random()*7);
int n2 = (int)(Math.random()*7);
int n3 = (int)(Math.random()*7);

[code]...

But I just can't figure out a way to print out the "YOU WON NOTHING." independently.If I say that n1!=n2 && n2!=n3 && n3!=n1, and then write another line of println. It gives out the number as well as the "NOTHING".

View Replies View Related

JSP :: How To Print Null Values In EL

Dec 18, 2014

The value is: ${object1.property1} If the value of the property is null, I want "null" to be printed, like this:

The value is: null But I get an empty string, like: The value is:

I know I can use a ternary operator, but isn't there a simpler/shorter solution? A function (like NVL() in SQL)?

The value is: ${empty object1.property1 ? "null" : object1.property1 }

Not only is this long, but the value expression is typed twice, which is a magnet for bugs.

View Replies View Related

While Loop To Print All Odd Numbers Between 1 And 100

Apr 3, 2015

I want to write a while loop to print all odd numbers between 1 and 100.

But it gives error. Where is the mistake?
 
public class pro {
public static void main(String[] args) {
// TODO Auto-generated method stub 
int c;
int x=1;
 
[Code] ....

View Replies View Related

How To Print String Only Five Times

Feb 11, 2015

I can't figure out how to print this string only five times. I tried to use the * operator, but that doesn't work with strings apparently, unles i'm not importing correctly.
 
import java.lang.String;
public class Looparray
{
public static void main(String args[] {
for (String myStr= "Hello there!";;) {
System.out.print (myStr);
System.out.print("
");
}
}
}

View Replies View Related

Print Text To File

Apr 29, 2014

I'm not getting text in the Pledge.txt file. Do I need to assign the pledge to a String variable?

Java Code:

import java.io.*;
import java.util.*;
public class ReadMe {
public static void main(String[] args) throws IOException{
File file = new File("Pledge.txt");
PrintWriter output = new PrintWriter(file);

[Code] .....

View Replies View Related

Symbol Won't Print From For Loop

Oct 20, 2014

On line 45 i am trying to add "-" symbol to my output phone number. As of now the out prints like "1800*45*3569377. I want it to print 1800-3569377, or even more ideal: 1-800-356-9377. When printing normally (system.out.println) I can print symbols, but when I try to print from a for-loop it says "unclosed character literal." import java.util.Scanner;

public class Phone_010473030 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter a phone number string: ");
String Phone_num = input.nextLine();
Phone_num = Phone_num.toUpperCase();

[code]....

View Replies View Related

How To Print JFrame With All Its Subcomponents

Oct 5, 2014

I have a form in netbeans java. I want to print the form as it is.Actually I want to print the bill. I am beginner in netbeans java.

View Replies View Related

Print Current Time Every Second?

Nov 13, 2014

I need to write a program that prints the current time every second. Here is what I have and I am not entirely sure why I'm not.

Java Code:

import java.util.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Timer;
public class CurrentTime

[Code] .....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved