HELP IN JAVA:
2. Input a phrase consisting of uppercase and lowercase characters and ending with a '.' Output the same phrase all uppercase.
3. Repeat #2. But this time the input should consist of several lines each ending with a period, and the last line contains a '#' signalling the end of the input. For example:
Today is Friday.
When life hands you lemons, make lemonade.
It's raining.
#
//Main1.java
import java.util.Scanner;
public class Main1 {
public static void main (String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter string:");
String s = scanner.nextLine();
System.out.println(s.toUpperCase());
}
}

-------------------------------------------------------------
//Main2.java
import java.util.Scanner;
public class Main2 {
public static void main (String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter strings ending with line #:");
String arr[] = new String[100];
int i = 0;
while (true) {
String s = scanner.nextLine();
if(s.equals("#")){
break;
}
arr[i++] = s;
}
for(int j = 0;j<i;j++){
System.out.println(arr[j].toUpperCase());
}
}
}

HELP IN JAVA: 2. Input a phrase consisting of uppercase and lowercase characters and ending with...
C Program In this assignment you'll write a program that encrypts the alphabetic letters in a file using the Vigenère cipher. Your program will take two command line parameters containing the names of the file storing the encryption key and the file to be encrypted. The program must generate output to the console (terminal) screen as specified below. Command Line Parameters Your program must compile and run from the command line. The program executable must be named “vigenere” (all lower...
Question 2 (80 marks)
This programming assignment is divided into two parts:
(a) You will develop a Java class called StringSummary based on
the UML class diagram depicted in Figure 1
A user will enter a string of sentence (Figure 2), and your
program will provide a
summary of the sentence as shown in sample output Figure 3.
The class contains several private attributes:
• str stores the sentence input by user.
• specialChars stores number of special characters (i.e....
**IN JAVAAssignment 10.1 [95 points]The WordCruncher classWrite the Java code for the class WordCruncher. Include the following members:A default constructor that sets the instance variable 'word' to the string "default".A parameterized constructor that accepts one String object as a parameter and stores it in the instance variable. The String must consist only of letters: no whitespace, digits, or punctuation. If the String parameter does not consist only of letters, set the instance variable to "default" instead. (This restriction will make...
Lab 4: Java Fundamentals, Part IV In this assignment, you solve a conversion problem similar to Programming Challenge 1 of Chapter 3 of your text, page 184 (187 in Edition 5). Given one of the Roman numerals I, II, III, IV, V, VI, VII, VIII, IX, X, XI, XII, XIII, XIV, XV as an input your program must determine and display the corresponding decimal digit 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15....
Hello Guys. I need help with this its in java In this project you will implement a Java program that will print several shapes and patterns according to uses input. This program will allow the use to select the type (say, rectangle, triangle, or diamond), the size and the fill character for a shape. All operations will be performed based on the user input which will respond to a dynamic menu that will be presented. Specifically, the menu will guide...
Project 4: Month-end Sales Report with array and validation Input dialog box for initial user prompt with good data and after invalid data Input OK Cancel Input dialog boxes with sample input for Property 1 Ingut X Input Enter the address for Property 1 Enter the value of Property 1: OK Cancel Input dialog boxes after invalid data entered for Property 1 Error Please enter anmumber greater than D Ester the walue of Peoperty t Console output END SALES REPORT...
I need help with this assignment in C++,
please!
*** The instructions and programming style details
are crucial for this assignment!
Goal: Your assignment is to write a C+ program to read in a list of phone call records from a file, and output them in a more user-friendly format to the standard output (cout). In so doing, you will practice using the ifstream class, I'O manipulators, and the string class. File format: Here is an example of a file...
The following are screen grabs of the provided files
Thanks so much for your help, and have a nice day!
My Java Programming Teacher Gave me this for practice before the exam, butI can't get it to work, and I need a working version to discuss with my teacher ASAP, and I would like to sleep at some point before the exam. Please Help TEST QUESTION 5: Tamagotchi For this question, you will write a number of classes that you...
Code is in C#
Your instructor would like to thank to Marty Stepp and Hélène Martin at the University of Washington, Seattle, who originally wrote this assignment (for their CSE 142, in Java) This program focuses on classes and objects. Turn in two files named Birthday.cs and Date.cs. You will also need the support file Date.dll; it is contained in the starter project for this assignment. The assignment has two parts: a client program that uses Date objects, and a...