this assingent is to pseudocode, i have instructions
and the example my teacher had given me for this, could i have some
assistance, i need to do this in netbeans IDE and i need to use the
scanner method as well and i need to pass both.
Pseudocode.java
import java.util.Scanner;
public class Pseudocode {
public static void main(String[] args) {
/* PROMPT user to
enter:
OBTAIN apples on hand
OBTAIN apples that should be in stock
OBTAIN oranges on hand
OBTAIN oranges that should be in stock
CALCULATE difference between on hand and in stock
DISPLAY amount that need to be ordered
*/
Scanner input = new
Scanner(System.in); //Create scanner for inputs
System.out.println("How
many apples do you have?");
int appleHand =
input.nextInt();
System.out.println("How
many apples should you have in stock?");
int appleStock =
input.nextInt();
int appleDifference = (appleStock - appleHand); //Determine what is
needed for apples
System.out.println("How
many oranges do you have?");
int orangeHand =
input.nextInt();
System.out.println("How
many oranges should you have in stock?");
int orangeStock =
input.nextInt();
int orangeDifference = (orangeStock - orangeHand); //Determine what
is needed for oranges
System.out.println("You
need " + appleDifference + " apples and " + orangeDifference + "
oranges.");
}
}
this assingent is to pseudocode, i have instructions and the example my teacher had given me for...
How do i write the pseudocode for this java code? First, write
out pseudocode, and then create a program to help you by
accomplishing the following tasks:
: Use command line interface to ask the user to input the
following.
○ How many apples are on hand ○ How many apples should be in
stock ○ How many oranges are on hand ○ How many oranges should be
in stock
Perform an operation to determine how many of...
Please help me write a Pseudocode (please do NOT answer in JAVA or Python - I will not be able to use those). Please ALSO create a flowchart using Flowgarithm program. Thank you so much, if answer is provided in Pseudocode and Flowchart, I will provide good feedback and thumbs up to the resonder. Thank you! Tic-Tac-Toe Game Write a program that allows two players to play a game of tic-tac-toe. Use a two- dimensional char array with three rows...
Hello, I need the pseudocode / flowchart for the following :
read input from a file by adding all the numbers in a file to an
array, then iterate through the array to count how many times each
number appears in the array (the frequency of each number) - then
write the summation results to a file: summary.txt.
Need to use a numbers.txt file that looks like this:
Hello, I'm having trouble solving this problem. I have tried
some other codes and they seem like they work but I am not sure how
the files are made or how this code works. It will be helpful that
you show me how. Thank you so much. (In C++)
Write a program find that searches all files specified on the command line and prints out all lines containing a keyword. For example, if you call find Tim report.txt address.txt homework.cpp...
write programs with detailed instructions on how to
execute.
code is java
What you need to turn in: You will need to include an electronic copy of your report (standalone) and source code (zipped) of your programs. All programming files (source code) must be put in a zipped folder named "labl-name," where "name" is your last name. Submit the zipped folder on the assignment page in Canvas; submit the report separately (not inside the zipped folder) as a Microsoft Word...
I need some help please. I have built my program but I am seeing some codes being thrown that I can't figure out how to solve. If I can get some help looking over the code and how to fix it, I'd greatly appreciate. Bicycle.java:[48,4] method does not override or implement a method from a supertype TestFootPrint.java:[23,30] incompatible types: Building cannot be converted to CarbonFootprint TestFootPrint.java:[24,30] incompatible types: Car cannot be converted to CarbonFootprint TestFootPrint.java:[25,30] incompatible types: Bicycle cannot be...
Python Programming Chapter 5 Programming Exercise Dinner Selection Program (60 points total) Pseudocode (10 points) As the family cook, you know that the toughest question of the day is "What's for dinner?" You For decide to write a program to help you do days of meal planning for the entree, side and dessert. You will need to use random numbers and functions to complete the project. What's Dinner? • • • Start with a pseudocode (10 points). Write the pseudocode...
my question is on a java program. i have added all instructions for this homeowrk assignment. from how the input is entered and what the output should read. im seeing if i can get a psuedo code setup for how the algorithm should be setup. Build an Intersection Check program. User inputs two points as x-y coordinates in twodimension space. Two points represent two end points of a line segment. Then, user can input second two points for the second...
Hi everyone, For my Assignment I have to use C# in order to create a validation form and include the following things to register and validate: Email Address, Username, Password, Retype Password, and a Submit Button. I have figured out some of the code for the Email Address validation: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Validation4 { public partial class Form1 : Form { ...
I NEED HELP WITH THIS 2 PROBLEMS PLEASE! THANK YOU SO MUCH
Given below is a partially completed C program, which you will use as a start to complete the given tasks. #define SIZE 9 #include <stdio.h> int compareAndCount (int[], int[]); double averageDifference (int[], int[]); void main() { } int compareAndCount(int arr1[SIZE], int arr2[SIZE]) { int count = @; for (int i = 0; i < SIZE; i++) { if (arr1[1] > arr2[i]) count++; return count; } Task 1: (10...