Use Java or C or C++ to write an echo program. Name your source code file repeat with the appropraite source code extention: repeat.java , repeat.c, repeat.cpp . The program should be the following: • prompt the user to enter text • capture text from standard input • output the captured text back to standard output

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Topic Video
Question
Create a new directory, Labe9
Create a file named Labe9.md based on the template.
• Raw version of LabTemplate.md
For each part below, you will be asked to do an action or answer a question. The actions are going to be commands - you will write the
command you used as "answers" to the action requested. You are allowed to use multiple commands to solve an action. Just write down all that
were needed to complete. Check with the TAs if you need clarification.
If you did something "wrong" make a note of it in your lab. These are learning experiences - writing them down will help you ask good
questions later.
O Part 1- Write Code
Use Java or Cor C++ to write an echo program. Name your source code file repeat with the appropraite source code extention: repeat.java ,
repeat.c, repeat.cpp . The program should be the following:
• prompt the user to enter text
• capture text from standard input
• output the captured text back to standard output
• Additional notes
o Code integrity does not matter - you may work together or use things found on the internet or textbooks. Practice citing your sources
using comments in your code.
o You are welcome to use an IDE you are familiar with to write test and debug your code, but you'll need to get the source code to a file
on your AWS instance for the remainder of the lab.
o There is some useful C starter code in this guide about halfway down.
. You'll need to add another print statement before the scan statement to prompt the user to enter a string.
e Part 2 - Compile a Program
1. Identify the compiler for your source code and well as its version and installed location.
2. Compile your source code using the compiler.
3. Run your compiled code.
P Part 3 - Create a Makefile
1. Create a file called Makefile .
2. Write targets in your Makefile such that the following terminal commands do the corresponding actions:
make - if the source code file exists, will compile the program
o make run - if the compiled program exists, will execute / run the program
make clean - if the compiled program exists, will delete the compiled program
Transcribed Image Text:Create a new directory, Labe9 Create a file named Labe9.md based on the template. • Raw version of LabTemplate.md For each part below, you will be asked to do an action or answer a question. The actions are going to be commands - you will write the command you used as "answers" to the action requested. You are allowed to use multiple commands to solve an action. Just write down all that were needed to complete. Check with the TAs if you need clarification. If you did something "wrong" make a note of it in your lab. These are learning experiences - writing them down will help you ask good questions later. O Part 1- Write Code Use Java or Cor C++ to write an echo program. Name your source code file repeat with the appropraite source code extention: repeat.java , repeat.c, repeat.cpp . The program should be the following: • prompt the user to enter text • capture text from standard input • output the captured text back to standard output • Additional notes o Code integrity does not matter - you may work together or use things found on the internet or textbooks. Practice citing your sources using comments in your code. o You are welcome to use an IDE you are familiar with to write test and debug your code, but you'll need to get the source code to a file on your AWS instance for the remainder of the lab. o There is some useful C starter code in this guide about halfway down. . You'll need to add another print statement before the scan statement to prompt the user to enter a string. e Part 2 - Compile a Program 1. Identify the compiler for your source code and well as its version and installed location. 2. Compile your source code using the compiler. 3. Run your compiled code. P Part 3 - Create a Makefile 1. Create a file called Makefile . 2. Write targets in your Makefile such that the following terminal commands do the corresponding actions: make - if the source code file exists, will compile the program o make run - if the compiled program exists, will execute / run the program make clean - if the compiled program exists, will delete the compiled program
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Please answer part two using the following code for part one!

#include <iostream>

using namespace std;

// main function
int main()
{
    // declaring a string variable to store the entered text
    string Text;
    
    // asking user to input some text
    cout<<"Enter Some Text : ";
    // taking user input for Text and storing the input in the Text string variable 
    // using the getline() function to input text
    getline(cin , Text);
    
    // print the entered text on the standard output
    cout<<"\nYou Entered : "<<Text;
    
    return 0;
}

Create a new directory, Labe9
Create a file named Labe9.md based on the template.
• Raw version of LabTemplate.md
For each part below, you will be asked to do an action or answer a question. The actions are going to be commands - you will write the
command you used as "answers" to the action requested. You are allowed to use multiple commands to solve an action. Just write down all that
were needed to complete. Check with the TAs if you need clarification.
If you did something "wrong" make a note of it in your lab. These are learning experiences - writing them down will help you ask good
questions later.
O Part 1- Write Code
Use Java or Cor C++ to write an echo program. Name your source code file repeat with the appropraite source code extention: repeat.java ,
repeat.c, repeat.cpp . The program should be the following:
• prompt the user to enter text
• capture text from standard input
• output the captured text back to standard output
• Additional notes
o Code integrity does not matter - you may work together or use things found on the internet or textbooks. Practice citing your sources
using comments in your code.
o You are welcome to use an IDE you are familiar with to write test and debug your code, but you'll need to get the source code to a file
on your AWS instance for the remainder of the lab.
o There is some useful C starter code in this guide about halfway down.
. You'll need to add another print statement before the scan statement to prompt the user to enter a string.
e Part 2 - Compile a Program
1. Identify the compiler for your source code and well as its version and installed location.
2. Compile your source code using the compiler.
3. Run your compiled code.
P Part 3 - Create a Makefile
1. Create a file called Makefile .
2. Write targets in your Makefile such that the following terminal commands do the corresponding actions:
make - if the source code file exists, will compile the program
o make run - if the compiled program exists, will execute / run the program
make clean - if the compiled program exists, will delete the compiled program
Transcribed Image Text:Create a new directory, Labe9 Create a file named Labe9.md based on the template. • Raw version of LabTemplate.md For each part below, you will be asked to do an action or answer a question. The actions are going to be commands - you will write the command you used as "answers" to the action requested. You are allowed to use multiple commands to solve an action. Just write down all that were needed to complete. Check with the TAs if you need clarification. If you did something "wrong" make a note of it in your lab. These are learning experiences - writing them down will help you ask good questions later. O Part 1- Write Code Use Java or Cor C++ to write an echo program. Name your source code file repeat with the appropraite source code extention: repeat.java , repeat.c, repeat.cpp . The program should be the following: • prompt the user to enter text • capture text from standard input • output the captured text back to standard output • Additional notes o Code integrity does not matter - you may work together or use things found on the internet or textbooks. Practice citing your sources using comments in your code. o You are welcome to use an IDE you are familiar with to write test and debug your code, but you'll need to get the source code to a file on your AWS instance for the remainder of the lab. o There is some useful C starter code in this guide about halfway down. . You'll need to add another print statement before the scan statement to prompt the user to enter a string. e Part 2 - Compile a Program 1. Identify the compiler for your source code and well as its version and installed location. 2. Compile your source code using the compiler. 3. Run your compiled code. P Part 3 - Create a Makefile 1. Create a file called Makefile . 2. Write targets in your Makefile such that the following terminal commands do the corresponding actions: make - if the source code file exists, will compile the program o make run - if the compiled program exists, will execute / run the program make clean - if the compiled program exists, will delete the compiled program
Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education