Write a program that uses a while loop to perform the following steps: Comment by labelling each part: //Part A, //Part B, etc...
A.)Prompt the user to input 2 integers: firstNum and secondNum. Use 10 and 20.
B.)Output all odd numbers between firstNum and secondNum.
C.)Output the sum of all even numbers between firstNum and secondNum.
D.)Output the numbers and their square between 1 and 10.
E.)Output the sum of the square of odd numbers between firstNum and secondNum.
F.)Output all uppercase letters.
Again I am new to while loops and I am totally lost. I have just completed 8 other programs using if else statements and now trying to get the hang of loops.
import java.util.Scanner;
public class whileLoop {
public static void main(String[] args)
I am attempting to grab stock prices for an array of different stock tickers. In my code, I iterate through the array of stock tickers and at the same time, grab the stock prices from an API. Then, I store the stock prices into a new array and attempt to display the new array.
For example: An array element may contain 'AAPL' as a stock ticker. The for loop enters this element into the URL which links to an API, grabs the stock prices, stores it into a temporary variable. Then it stores the value (the stock price) of that temporary variable in to a new array. Then the new array will attempt to print out this stock price along with all the other stock prices.
Here is my code:
public static void getStock(String[] tickers) { for (i = 0; i < tickers.length; i++) { try { URL url = new URL("http://query.yahooapis.com/v1/public
[Code] .....
The above code works fine if I am printing the stock prices from inside the for loop. And I can see why, it enters and prints the new stock price in the new array through each loop.
My problem is, I do not know how to access the new array (stockOutput) outside of the for loop, or how to display its contents outside of the for loop.
My java project has got a jbehave story and steps class. when i run the test, an instance of the steps class is being created but the class is not actually run.
my steps class :
public class StepsDemo extends Steps { int x, result = 0; StepsDemo() { System.out.println("steps class constructor : object created");
[code]....
and my Runner class :
public class RunnerDemo extends JUnitStories { public RunnerDemo() { super(); } @Override protected List<String> storyPaths() {
I need to create a JFrame with a user given amount of text fields in the form of a matrix. Say the user inputs 5 rows and 5 columns, I need to read those ints and create a 5 by 5 box of JTextFields in matrix form (i.e. 25 total text boxes in the form of a box). Here is some of the code I have been trying to use to do this...
int x = 10; int y = 10; for(int i = 0; i<rowSize; i++){ y= y+40; for(int k =0; k<colSize; k++) { newField = new JTextField("0"); newField.setBounds(x,y,40,20); win2.add(newField,0); win2.repaint(); x= x+60; } }
In order to go through the loop a given amount of times and create that amount of text fields in the correct places.Am I even close to doing this right?? Cuz I can't get the text fields to even show up on my window.
I just started playing around with Java for awhile, but got caught up in a problem when using ArrayList.
CinemaAppMain public class CinemaAppMain { public static void main(String[] args) { new CinemaApp().start();
[Code]....
I am trying to get the movie name and theatre title from their ArrayList, and I know I need to go through the movie list & theatre list to find their name & title, and compare it with the user input and print out the result.
I use for(int i=0;i<movies.size();i++) to go through the the movie list, and I tried using for(int i=0;i<theatres.size();i++) to go through the theatre list. But when I printing multiple time with different user input value, it will show me strange result (screening have same movie name & theatre name, the else if statement is printed below the user input, user input is printed more than once after the first time).
Edit: I know its wrong for me to use nested for loop,if not, another solution is needed to get the item inside both of the list. (getting the "title" from movie list & "name" from theatre list)
I'm going through a file (MySQL dump) and I wish to take the SQL and create individual files for each table (as opposed to what I do now, which is just run through the whole thing).
Now, this all works fine - but what I want to do is create a separate .sql file for each table.
However, I can't figure out the best way to do this - how do I create a new FileWriter (or instance of whatever class is required) as I'm going through the while loop? That or pointing the same one to different files as I go through the loop.
It can be assumed that the file may exceed RAM - I want to do it line by line rather than slurping the entire file as a string and "cheating" that way.
There appear to be many (a bewildering amount of) I/O options and I'm just unsure.
I'm building a JavaEE 7 web app and I want to add user authentication. Although I haven't found a complete guide, via the resources I've gathered I think I'm quite close. I can't make it work though. In all honesty I don't understand ALL of the code yet, I'm using it though because it's supposed to work, it's from JavaEE 7 Recipes book.
I've created my database, set up the JDBC realm in GlassFish, added the persistence unit, created the entity classes, the backing bean, the ejb, called the EL expressions...
When I'm supposed to login it throws a "loginBean.username is unreachable" or something. I don't understand why, the inputText's value is supposed to go straight to the backing bean right?
The method public static int steps(int posts, int stride) calculates how many strides can be taken to get back to posts. Let's say if the method is (12, 4), it takes only three steps. Now let's say the method has parameters (12,5), so it should be (5, 10, 3, 8, 1, 6, 11, 4, 9, 2, 7, 12). My method works for such examplse as (12, 4) or (12,3) or (6,2)... but how can I figure out (12,5)?
Java Code:
public static int steps(int posts, int stride) { int countSteps = 0; int result = 0; do { result += stride;
I've created my database, set up the JDBC realm in GlassFish, added the persistence unit, created the entity classes, the backing bean, the ejb, called the EL expressions...
When I'm supposed to login it throws a "loginBean.username is unreachable" or something. I don't understand why, the inputText's value is supposed to go straight to the backing bean right?
I know this is a very vague description but I can provide you with all the code you may want, it's simply I cannot think of anything to do right now since I'm not familiar with the methodology yet...
I am trying to execute the following method: This method takes a delivery date as one of the arguments and a list of calendar holidays as another argument. If the delivery date is present in the holiday list, I will add 1 day more to the delivery date and check again if the new delivery date is part of holiday list.
Issue is that the last 3 statements before 'return' are getting executed multiple times though there is no for or while loop. Why they are getting invoked multiple times.
@SuppressWarnings("rawtypes") private String fetchNextWorkingDay(String sDeliveryDate, Element eleCalendarDayExceptions, SimpleDateFormat sdf, Format formatter) throws Exception { System.out.println(""); System.out.println("Inside fetchNextWorkingDay method"); System.out.println("Del Date to compare is "+sDeliveryDate); Boolean isDateSet = true;
How to get my program to display a piece of text (upside down) on the first button press, and then display it right-side up on the second button press. I've looked all over the internet and I can't seem to find a example that fits my situation.
Here is the code:
package org.CIS407.Lab10; import javax.swing.*; import java.awt.*; import java.awt.event.*; public class JUpsideDown extends JFrame implements ActionListener
I am doing a calculator using stacks but when i try to calculate I getting the wrong data example stack contains 8 and user enter -3 stack should change to 5.
This has three different classes in a package and the program itself is supposed to read and perform operations obtained from a txt file. However, I'm not even sure how to get it to perform the operations from the text file. I know that it can read the file as I was able to get the program to print the text found in the file when I ran the program with a test print to make sure that all content was being read. However, I am clueless when it comes to how to get the program to look at the text as commands.
Here is the piece of code that I am not sure where to go from as far as telling the program to read the text and perform the tasks listed.
public static void doTVoperations(){ File operations = new File("operations.txt"); if(operations.exists()) try{ Scanner n = new Scanner(operations);
public static void main(String[] args) { boolean t=false; long cuTime = System.currentTimeMillis() while(t==false) { System.out.println(cuTime); long g=cuTime+2000;
[Code] ....
I tried this and it includes a while loop as the whole program has to wait until this while loop executes. So the entire program slows down. Is there any way to do this without a while loop
public static void main(String[] args) { boolean t=false; long cuTime = System.currentTimeMillis(); while(t==false) { System.out.println(cuTime); long g=cuTime+2000;
[Code] ....
I tried this and it includes a while loop. therefor the whole program has to wait until this while loop executes. So the entire program slows down. Is there any way to do this without a while loop...
I am able to perform column operation but not able to perform row operation because i am not able to store data say a 2 matrix [][]. I need to store the data into a 2-D matrix. Here is my code:
Java Code:
import java.awt.List; import java.io.BufferedReader; import java.io.FileReader; import java.util.ArrayList; import java.util.Scanner; public class colRowRead {
I need to know how to automate a web browser (either Chrome, Firefox or Safari) to perform the following task.
Take a word from a .txt file housed on my hard drive,
1) put it into a search engine, 2) load the results, 3) click on/ open the first result, 4) open up an new tab and perform steps 1-3 again but with the next word from the .txt file. 4-5 second pauses are needed in between each step.
Additionally, I would like to automate the browser to close all the open tabs when a full stop is pulled from the .txt file.
public static void main(String[] args) { boolean t=false; long cuTime = System.currentTimeMillis(); while(t==false) { System.out.println(cuTime);
[code].....
I tried this and it includes a while loop as the whole program has to wait until this while loop executes. So the entire program slows down. Is there any way to do this without a while loop
I have to ask the user to enter 4 whole numbers, and then the program will calculate:
> x numbers are positive and even > x numbers are positive and odd > x numbers are negative and even > x numbers are negative and odd
but I have trouble with the conditions. How do I form the conditions to calculate this? My professor said I can do this with only four IFs (or ELSE IF). This is what I did:
import java.util.Scanner; public class Calc{ public static void main(String [] args){ Scanner sc = new Scanner(System.in);
int pe = 0, po = 0, ne = 0, no = 0; /* four variables for each result pe - positive even po - positive odd ne - negative even no - negative odd
I have i am trying to implement tooltip through javascript, like when we click on an image link tooltip should be displayed and it should have close button/ close image to close that tooltip.like the same way i will have multiple images on page, when ever i click on the images all tooltips should be displayed on the page when ever i want to close that then only it should close through close button on tooltip.can we do it through java script or will go for jquery.
This has three different classes in a package and the program itself is supposed to read and perform operations obtained from a txt file. However, I'm not even sure how to get it to perform the operations from the text file. I know that it can read the file as I was able to get the program to print the text found in the file when I ran the program with a test print to make sure that all content was being read. However, I am clueless when it comes to how to get the program to look at the text as commands.
Here is the piece of code that I am not sure where to go from as far as telling the program to read the text and perform the tasks listed.
public static void doTVoperations(){ File operations = new File("operations.txt"); if(operations.exists()) try{ Scanner n = new Scanner(operations); while(n.hasNext()){ String readOperations = n.nextLine(); String [] command = readOperations.split("[ ]"); } n.close(); } catch (FileNotFoundException e){ System.out.print("Error...TV in need of repair!"); }
I am trying to put together a small application in my spare time. Nothing major, but one thing I want it to do is accept a few inputs, and take those and add them to a table with columns for use later (printing, calculations, etc). I was originally looking at something like Jtable, but that looks just like an excel spreadsheet done Java, so not what I'm looking for.
I'm looking for something that's read-only, where I can insert data from input fields, and then perform calculations with the column data later.