Valid Ticket ID
Apr 13, 2014
String must be 6 characters, first 3 must be letters, last 3 must be digits..Here is my code:
import java.util.Scanner;
public class ValidTicket {
public static void main (String[] args){
Scanner in = new Scanner (System.in);
String id;
int c=' ',i;
int letterCount=0, digitCount=0;
System.out.printf("Enter ticked id
[code]....
However when I run my program, it does not work:After I enter the string nothing happens.
View Replies
ADVERTISEMENT
Jan 5, 2015
public class TextLab03st
{
public static void main(String args[])
{
System.out.println("Text Lab 03");
System.out.println();
System.out.print("What is the posted speed limit? --> ");
int speedLimit = Expo.enterString();
System.out.println("");
System.out.print("How fast was the car travelling in mph? --> ");
int trueSpeed = Expo.enterString();
int ticketPrice;
[code]...
I tried everything and there's supposedly one error saying it reached the end of the file while parsing. I'm trying to make a speeding ticket program for my class.
View Replies
View Related
Sep 13, 2014
The manager of a football stadium wants you to write a program that calculates the total ticket sales after each game. There are four types of tickets: box, sideline, premium, and general admission. After each game, the data is stored in a file in the following format:
ticketPrice numberOfTicketsSold
Sample data might look like:
250 5750
100 28000
50 35750
25 18750
The first line indicates that the box ticket price is $250 and that 5750 tickets were sold at that price.
Your program should input in this data (using Scanner or an input dialog box), then output that data to a message dialog box along with total ticket sales information. Output the total number of tickets sold and the total sale amount. Make your output user-friendly and "pretty". Format your output with two decimal places. Use JOptionPane and the formatting techniques learned in chapter 3 for your output. Example output might be:
5750 Box Tickets sold at $250.00
28000 Sideline Tickets sold at $100.00
35750 Premium Tickets sold at $50.00
18750 General Admission tickets sold at $25.00
View Replies
View Related
Sep 12, 2014
I am having trouble creating the for loop in the Parking Simulator. I dont even know where to start. I have searched google and I havent found any Parking simulators that used array lists. Here are the requirements:
The ParkingSimulator Class: This class should simulate checking the parking tickets. You should loop through the cars, choose a random officer, and have that officer check to see if there is a parking violation. If there is a violation, add it to the ParkingTicket ArrayList. After all have been checked, print out a summary of the tickets (using the toString() from the ParkingTicket class).
I think I have all the classes right except for the ParkingTicket Class which I know is screwed up in the for loop because I cannot get the random officer and create and report ticket if mins were over maxlimit and it is printing the whole string of officers when it should be picking one officer at random to assign to the ticket. Also it is not printing out the whole output.
output should look like:
VW with license # N34234 parked for 60 minutes at PM1 and a maximum time limit of 90 minutes - no violation.
Reported by officer Joe badge: PO123
Mazda with license # 234-567 parked for 70 minutes at PM2 and a maximum time limit of 60 minutes
was parked illegally for 10 minutes for a fine of 25.0. Reported by officer Sam badge: PO812
etc;
Summary of tickets:
License:234-567 at meter #:PM2: Fine: $25.00
License:W879HY4 at meter #:PM4: Fine: $25.00
License:BG65RF7 at meter #:PM5: Fine: $25.00
[Code]....
View Replies
View Related
Nov 4, 2014
I am trying to create a method for my "ticketmachine" object that counts ticket objects in an arraylist of "ticket" objects with a specified field "route". The method works if i change the field type of the ticket class to public, however according to the homework task "route" of the ticket class needs to remain a private field.
Here is my code for the method.
public int countTickets(String route) //HAD TO CHANGE Ticket class FIELD "ROUTE" TO PUBLIC!!!!
{
int index = 0; //returns the number of Ticket objects in the machine with the specified "route".
int ticketCounter = 0;
while (index < tickets.size())
[Code] ....
Is my general approach to the problem wrong? also is there a way to access a private field?
View Replies
View Related
Oct 4, 2014
Write a program that will calculate the cost of a ticket order and display the receipt for the customer on the screen. There are 2 ticket prices: adult, and senior citizen. Adult seats are $4.50 and senior citizen seats are $3.50. If more than 5 senior citizen tickets are purchased, the customer gets an extra 20% off the of the ticket order. If more than 10 regular seats are purchased, the customer gets an additional 10% off the cost of the order. A customer can only place an order for one type of ticket. Output the type of ticket purchased, the number of tickets purchased, the gross cost, the amount of the discount, and the final cost of the order.
I am having errors with incaompatible varriables comparing float with doubles.
public class lab3 {
static Library myLib;
public static void main (String [] args) {
Library myLib = new Library(); //Instance the Library class
int ticketNum; //Number of Tickets
[Code] .....
View Replies
View Related
Nov 26, 2014
users are trying saving or updating incident request on website they are able to see fault string =Java.lang.stackoverflow : null when saving or updating ticket request on flex with Java hibernate.
View Replies
View Related
Oct 26, 2014
I am doing a pretty basic program with a fixed origin city and five destination cities. I am having trouble with entering passenger details. This is what I tried, but then I cannot retain all passenger details to print later on in the final ticket.
System.out.println("Enter flight details of child passengers (below 12 years)");
System.out.println("Enter Name");
for(a = 1; a <= cp; ++a)
{
//cp is number of child passengers, a is loop variable
String name = br.readLine();
System.out.println("1. " + name);
}
View Replies
View Related
Apr 26, 2015
I am required to make a console calculator that takes the values as strings and turns them into doubles. The user needs to be able to enter something like 3+4+5*9/13 on one line and the application give the answer. As of this point I am currently on at the last section as making the user be able to enter the expression and present the answer. I have added an array list containing + - / * and the same with the numbers 1-9...I now need to actually get the information to all come together. I'm not sure how to do that. I *think* I have all the parts for it to work.
public static void main(String[] args) {
String input = ""; // initalize the string
boolean isOn = true; // used for the while loop...when false, the
// program will exit.
final String exitCommand = "Exit"; // exit command
[code]....
View Replies
View Related
Feb 4, 2015
I have some problems about performing regular expression. In the following code, the output as a result is being "valid last name". But in my opinion, it should be "invalid last name". Because "Doe" has not any space, apostroph or any hypen. Look at the regular expression statement: "[a-zA-Z]+([ '-][a-zA-Z]+)*"
package deneme;
public class Deneme {
public static void main(String[] args) {
String lastName = "Mc-Something"; // Mc-Something
if(!lastName.matches("[a-zA-Z]+([ '-][a-zA-Z]+)*"))
System.out.println("Invalid last name");
else
System.out.println("Valid last name");
}
}
I know that the asterisk qualifier means character(s) in any number.(Is this wrong?) So for "Mc-Something", 'M' corresponds to [a-zA-Z], 'c' corresponds to +, - corresponds to [ '-], 'S' corresponds to [a-zA-Z], "o" corresponds to +, and finally "mething" corresponds to *, doesn't they? But for "Doe", there is no any space, apostroph or hypen.
View Replies
View Related
Jan 16, 2015
I am creating a JSF 2.0 project, and I am facing a problem when using the rich:pickList (richfaces 4) component with a custom converter.
I can populate the picklist left column rightly. But, when I move some item from left list to the right (by clicking in the pickList "add" button) and I try to submit the form that contains the pickList, I receive the following error message:
"mainForm:picklist: Validation Error: Value is not valid"
I have already overridden the methods equals and hashCode in my model class (Pessoas.java), but the problem remains.
cadastroEvento.xhtml
<rich:pickList id="picklist" converter="ApresentadorEventoConverter" value="#{CadastroEventoBean.pessoasSelecionadas}" var="pessoa" sourceCaption="Pessoas disponíveis" targetCaption="Pessoas selecionadas" listWidth="365px" listHeight="250px" orderable="false">
<f:selectItems value="#{CadastroEventoBean.pessoas}" />
<rich:column>
[Code] .....
View Replies
View Related
Oct 5, 2014
I am working on allowing a user to enter an ID # using JOptionPane. If the ID is valid, then it will display the ID#, student name, and GPA. If it is not valid, then the window should pop up again to allow the user to enter a valid ID. I have managed to get that far.
I am struggling with once a valid ID # is entered, how do I get the loop to stop? I have tried several different ways, but the code below is the most recent one, and it is still not working!
import javax.swing.*;
public class StudentIDArray
{
public static void main(String[] args)
{
String enteredID;
int idNumber;
int x = 0;
[Code] .....
View Replies
View Related
Oct 3, 2014
public class TicTacToeGame {
public static void main(String[] args) {
char [][] board = new char [3][3];
displayboard(board);
int count = 0;
boolean loop = true;
[Code] ....
I also try with check if the move is vaild but no luck with that.
View Replies
View Related
Oct 31, 2014
Make a password rule, and take input of the password from the user and compare the password with your rule, if the user had entered valid password then print the message, password valid, else the password is invalid for (the whatever) reason.
Rules:-
-Length 8-12
-Should have one numeric character
-No Special Character
-Atleast one UPPERCASE letter
PHP Code:
import java.util.*;
import java.lang.String;
import java.lang.Character;
public class PasswordSpence {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Please enter a Password: ");
String password = input.next();
if (isValid(password)) {
[Code] ....
View Replies
View Related
Apr 6, 2015
I am currently working on an application with java and I want to do is upload and download details in .xlsx file. Uploading process is successfully worked but the problem is that when I download the file .xlsx with details at opening the file it gives me the following message :
Excel cannot open the file '(filename)'.xlsx' because the file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file.
View Replies
View Related
Apr 21, 2014
Write a program reads in a series of passwords into an array. Store 10 passwords. After creating the password array, have the reader enter a password and see if it is in the array. Fi it is there, print "Valid password" and if it is not there, print "Invalid password."
This is what i have so far
Java Code:
public class passwordMatch
{
public static void main (String [] args){
String [] myArray = new String[10];
myArray[0] = "jasmine22";
myArray[1] = "jackson77";
[Code] .....
It doesn't compile. It gives me error saying .class expected next to String.myArray[]
View Replies
View Related
Nov 17, 2014
I'm trying to do a user validation loop that runs until the user enters a valid binary, q, or Q. I think the rest of my program should work as intended, but here is the areas of concern:
public static boolean isBinary(String num) //Check if the entry is binary
{
for(int i = 0; i < num.length(); i++) {
if(num.charAt(i) != 0 || num.charAt(i) != 1){
return false;
[Code] .....
The program runs without errors otherwise.
View Replies
View Related
Oct 14, 2014
[highlight = java]
public static int getNumberOfPlaylists(Path p)
This method should return the number of files in this path containing a valid M3U header.
How do I get this done?
View Replies
View Related
Apr 4, 2015
I need to create a program in Java for below question
"Prompt user for three sides of triangle and determine if it is valid triangle and then compute area"
With code and Sudo Code for above question.
I am using Netbean compiler.
View Replies
View Related
Nov 9, 2014
I am a beginner . How to add output for both valid and invalid lines in text file scanned in java ...
View Replies
View Related
Nov 11, 2014
I am writing a code in which a user inputs data as a string and that data must be verified as a valid number. A valid number is anything from 0-100. Then all valid numbers are converted into double numbers.
I am having trouble in how to write the validation part of the code.
Is it suppose to be an if, else statement? And if so how is it suppose to be validated?
View Replies
View Related
Aug 17, 2012
I am involving in airline booking engine project.
There is a requirement to view a completed booking ticket details continually in each 30 seconds.
Application is already developed using struts / spring and deployed on jBoss server.
I heard spring scheduler and queues. Which is the better solution?
View Replies
View Related
Oct 26, 2014
My homework assignment is: Using a do-while statement, write a Java program that continuously requests a grade to be entered. If the grade is less than 0 or greater than 100, your program should display an appropriate message informing the user that an invalid grade has been entered; a valid grade should be added to a total. When a grade of 999 is entered, the program should exit the repetition loop and compute and display the average of the valid grades entered. Run the program on your computer and verify the program using appropriate test data.
When I run it, I don't get the correct average. I know that i'm supposed to enter 999 to exit the loop and to display the average, but 999 is being added with the loop. I'm not sure how to make it not do that.
//stephanie
import java.util.Scanner;
public class gradeAverage
{
public static void main(String[] args)
[code]....
View Replies
View Related
Sep 22, 2014
Whenever i see online ticket booking site one question arise, How ticket booked in one site reflect in other site.
If i book 2 ticket from PVR online portal that two ticket will be showed as booked in bookmyshow.com, which technology is used for this and how.
View Replies
View Related
Dec 3, 2014
My homework is asking me to write a program that prompts the user to enter a password and displays "valid password" if the rule is followed or "invalid password"
Sample
enter a string for password: wewewx
valid password
It's being graded on
Design of my GUI
Dialog box
User friendliness
Creativity
My current issues with the current code I have written is simply the password doesn't work unless it starts with 2 digits, the other order it displays as wrong. and I have no idea how to add a GUI.
import java.util.*;
import java.lang.String;
import java.lang.Character;
[code]....
View Replies
View Related