Related questions
Task 1: Working with the cout Statement
Exercise 1: Retrieve
Fill in the code so that the program will do the following:
Write your first and last name on one line.
Write your address on the next line (recall the function of the endl statement).
Write your city, state and zip on the next line.
Write your telephone number on the next line.
Remember that to output a literal, such as "Hello", you must use quotes.
Compile and run the program.
Example: Deano Beano
123 Markadella Lane
Fruitland, Md. 55503
489-555-5555
The code for name.cpp is as follows:
// This program will write the name, address and telephone
// number of the programmer.
// PLACE YOUR NAME HERE
#include <iostream>
using namespace std;
int main()
{
// Fill in this space to write your first and last name
// Fill in this space to write your address (on new line)
// Fill in this space to write you city, state and zip (on new line)
// Fill in this space to write your telephone number (on new line)
return 0;
}
Exercise 2: Change the program so that three blank lines separate the tele-
phone number from the address. Compile and run the program.
Exercise 3: Change the program so that the following (but with your name and
address) is printed. Try to get the spacing just like the example. Compile
and run the program.
********
programmer: deano beano
123 markadella lane
fruitland, md, 55503
****************
to generate a solution
a solution
- Problem 1: Write down a program to accept user’s First and Last Name. Print full name of the user. Print the length of the full name of the user excluding the white spaces. Print the length of the First Name and Last Name respectively. Problem 2: Write down the program that displays your mailing address as it is generally printed in your area where you live.You do not require to take any input from the user. Mailing address can be any hypothetical address. Problem 3: Accept the length and width of the room in floating-point and compute the area of the room. Print area of the room including the units e.g. inch, meters, cms, feet, etc. Problem 4: Write a program to print the sum of n positive integers (1 to n), where n is input by the user. You can compute summation using following formula: Problem 5: Create a program that reads two integers, a and b, from the user. Your program should compute and display: The sum of a and b The difference when b is subtracted from a The...arrow_forward2. An id number is four digits long with the last digit being equal to the sum of the first three digits. Write a program that determines if a given id is a valid id.arrow_forwardWrite a program to input name and marks in 5 subjects. Calculate the total and grade. Display name, total, percentage and grade where grade will follow the given criteria. Percentage >95 "Excellent" , from 85 to 94 "Very Good" , from 75 to 84 "Good" from 65 to 74 "Satisfactory" less than <64 "Try again".arrow_forward
- Write a JavaFX program that prompts user to enter details: (PLEASE INCLUDE A SNAPSHOT OF THE CODE IN MAIN JAVA, MODULE-INFO,JAVA,CONTROLLER, AND SAMPLE.FXML) as shown below 1. To Enter user information (i.e., Name, Street, City, State, Zip). 2. To select the product (APP or MUSIC) –CheckBox 3. To select "Type" (Type of Music) –ComboBox 4. To select "Type" (Type of App) –RadioButton 5. Also to enter other information (i.e., Title, Date Purchased, Account Number). 6. At last, Two buttons to be present (SUBMIT and FINISH).arrow_forwardFor each item, write a single regular expression that matches that item. Note that in ALL cases, the entire string must match without additional characters. 1. A string of digits that contains only digits and contains exactly two fives. Examples of acceptable strings include: "15445", "55", "05563" o The string should be rejected if it contains anything other than a digits. 2. A regular expression that matches a time expressed in the form "1:45 PM". o The hours part must be a number from 1 to 12, the minutes range from 00 to 59, and the time must indicate either AM or PM (uppercase only and preceded by exactly one space). 3. A regular expression that matches a string representing a comma separated list of variable names such as: hello, get_max, sum3 o A variable name consists of letters, digits, and underscores but cannot start with a digit. o There is exactly one space after every comma. No other spaces are allowed. o Commas and spaces are not allowed before the first name and after...arrow_forwardWrite a substring expression to extract "Exam" from the following String. String str= "Final Exam";arrow_forward
- Select all alternatives that are correct related to variable names. a. It can have symbols in the middle or at the end. O b. It can not have digits at the end. C. It cannot start with a symbol, except__. O d. It can start with a digit. e. It can start with a capital letter.arrow_forwardIn java: ( no stringbuild or chart.append) the program must produce a neatly labeled bar chart depicting the relative values to each other. Note that there is no interactive input and no use of command line arguments. The program at this stage uses values programmed directly into it. The program output must include the original values as well as the bars. The example below shows the relative number of performances of some Broadway musicals (in picture) You choose the width of the chart. In the example above, it's 60, but it can be different. The largest value in your set should use the entire width, the rest of the bars will be proportionately shorter. Since you're assigning the values in the program, you know the maximum and no special logic is required to find it You must compute and display the "scale" of the chart (i.e. how many units one bar symbol represents) Each bar is labeled with the entity and value You may choose any symbol for your bars 3. In...arrow_forward3. in pyth code pleasearrow_forward
- Write a program that will take in basic information from a student, including student name, degree name, number of credits taken so far, and the total number of credits required in the degree program. The program will then calculate how many credits are needed to graduate. Display should include the student name, the degree name, and credits left to graduate. Step 3: What two things are wrong with the following calculation? (Reference: Variable Assignment and Calculations, page 43 from text book Starting Out with Programming Logic & Design). creditsLeft = creditsTaken – creditsDegreearrow_forward5. Write a program that will ask the user to input a letter 'm' or 'f and then it will display "Hello Sir" if the input is 'm' otherwise, "Hello Madam".arrow_forwarda. Write a program that reads your id and full name and display. And also display the index of first letter and last letter of your full name. b. Modify above program, Declare a string course, let your program read course from user, check if course is not equal to comp2002, clear the string otherwise concatenate course and " Computer Science Department". C. Modify above program declare a string college="". If string college is empty then assign a new string "College of Science".arrow_forward
- Text book imageDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationText book imageStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONText book imageDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- Text book imageC How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONText book imageDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningText book imageProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education