PROGRAMMING ASSIGNMENT TEMPLATE INSTRUCTIONS: SUBMITTING LABS Use the following template for ALL labs: After adding a new blank .cpp file to your assignment project, paste the template into that file. TEMPLATE // -- brief statement as to the file's purpose //CSIS 111- ADD YOUR SECTION NUMBER // //Include statements #include #include using namespace std; //Global declarations: Constants and type definitions only -- no variables //Function prototypes int main() { //In cout statement below SUBSTITUTE your name and lab number cout << "Your name Lab Number"<

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
Question
100%
Struggling with the code for Programming: HelloWorld Assignment
INSTRUCTIONS:
SUBMITTING LABS
Use the following template for ALL labs: After adding a new blank .cpp file to your
assignment project, paste the template into that file.
TEMPLATE
//<File name> -- brief statement as to the file's purpose
//CSIS 111-<Section Number> ADD YOUR SECTION NUMBER
//<Sources if necessary>
Page 1 of 3
PROGRAMMING ASSIGNMENT TEMPLATE
//Include statements
#include <iostream>
#include <string>
using namespace std;
//Global declarations: Constants and type definitions only -- no variables
//Function prototypes
int main()
{
S
}}
//Function definitions
//In cout statement below SUBSTITUTE your name and lab number
cout << "Your name -- Lab Number" << endl<< endl;
//Variable declarations
//Program logic
//Closing program statements
system("pause");
return 0;
627 words
Styles √5
Ex
Legend:
// indicates a comment. It does nothing in the program. It provides instructions to the
programmer #include is a command that tells the program to include a library of functions to
the programmer int main {} is the main program procedure. All programming logic and calls
between the braces The general format of a program is 1) define variables 2) Program logic
(collect data & run calculations) 3) display/store results
Functions: Functions are created and defined OUTSIDE the main program. They are
called from INSIDE the main program
Don't worry about the sections of the template you don't understand yet - they will make
sense as we progress through the course.
English (United States)
Display Settings
Focus
NO 0
Lo
CSIS 111
Editor
Page 1 of 3
4x
11:04 AM
12/18/2022
102%
Transcribed Image Text:INSTRUCTIONS: SUBMITTING LABS Use the following template for ALL labs: After adding a new blank .cpp file to your assignment project, paste the template into that file. TEMPLATE //<File name> -- brief statement as to the file's purpose //CSIS 111-<Section Number> ADD YOUR SECTION NUMBER //<Sources if necessary> Page 1 of 3 PROGRAMMING ASSIGNMENT TEMPLATE //Include statements #include <iostream> #include <string> using namespace std; //Global declarations: Constants and type definitions only -- no variables //Function prototypes int main() { S }} //Function definitions //In cout statement below SUBSTITUTE your name and lab number cout << "Your name -- Lab Number" << endl<< endl; //Variable declarations //Program logic //Closing program statements system("pause"); return 0; 627 words Styles √5 Ex Legend: // indicates a comment. It does nothing in the program. It provides instructions to the programmer #include is a command that tells the program to include a library of functions to the programmer int main {} is the main program procedure. All programming logic and calls between the braces The general format of a program is 1) define variables 2) Program logic (collect data & run calculations) 3) display/store results Functions: Functions are created and defined OUTSIDE the main program. They are called from INSIDE the main program Don't worry about the sections of the template you don't understand yet - they will make sense as we progress through the course. English (United States) Display Settings Focus NO 0 Lo CSIS 111 Editor Page 1 of 3 4x 11:04 AM 12/18/2022 102%
Clipboard
A-
DA
Aa
Font
A^
A
S
Styles
21
culting
Editor
Editor
C313 TII
PROGRAMMING: HELLOWORLD ASSIGNMENT INSTRUCTIONS
OVERVIEW
You will install & set up your C++ integrated development environment (IDE). This is the
environment where you will write your programs. You will also write your first program
assignment with this application.
INSTRUCTIONS
1. Install Visual Studio 2019 or Visual Studio Code. This tool can be found as Downloads
under the Programming: Hello World Resources. Instructions for installation can be found
in this Module: Week's Learn section as Installing VS 2017.
• Windows Users: Install Visual Studio Community 2019 for Windows Desktop (you will
need to create a free Microsoft account as part of this process if you do not already have
one).
• Mac Users: Install Microsoft Visual Studio Code. After downloading and installing the
application, make sure that you will also include a few extensions especially C++
extensions and the Code Runner extension
• Linux Users: Install Microsoft Visual Studio Code. After downloading and installing the
application, make sure that you will also include a few extensions especially C++
extensions and the Code Runner extension
2. Visual Studio Community: Create a new empty project in Visual Studio (VS) called "Hello
World," and then create a new .cpp file called HelloWorld. Into your HelloWorld.cpp file, copy
the contents of the provided Lab Template (all of your programming assignments must start by
copying the contents of the Lab Template into your main .cpp project file). Then below the
"//Program logic" line add the following code exactly as it appears here: cout << "Hello
World!" << endl;
a. Visual Studio Code: Create a new empty file. Call it HelloHorld.cpp. Next, copy the
program template provided in the instructions and paste it into your hello world file.
Save.
b. Now, locate the //Program logic" line add the following code exactly as it appears
here: cout << "Hello World!" << endl;
3. Compile and run your code.
4. After it runs properly - Take a screen capture of the console and make your honor statement
document with the screen capture. Finally zip and upload your program and honor statement.
NOTE: Make sure the quotes are straight (") and not fancy (")
Transcribed Image Text:Clipboard A- DA Aa Font A^ A S Styles 21 culting Editor Editor C313 TII PROGRAMMING: HELLOWORLD ASSIGNMENT INSTRUCTIONS OVERVIEW You will install & set up your C++ integrated development environment (IDE). This is the environment where you will write your programs. You will also write your first program assignment with this application. INSTRUCTIONS 1. Install Visual Studio 2019 or Visual Studio Code. This tool can be found as Downloads under the Programming: Hello World Resources. Instructions for installation can be found in this Module: Week's Learn section as Installing VS 2017. • Windows Users: Install Visual Studio Community 2019 for Windows Desktop (you will need to create a free Microsoft account as part of this process if you do not already have one). • Mac Users: Install Microsoft Visual Studio Code. After downloading and installing the application, make sure that you will also include a few extensions especially C++ extensions and the Code Runner extension • Linux Users: Install Microsoft Visual Studio Code. After downloading and installing the application, make sure that you will also include a few extensions especially C++ extensions and the Code Runner extension 2. Visual Studio Community: Create a new empty project in Visual Studio (VS) called "Hello World," and then create a new .cpp file called HelloWorld. Into your HelloWorld.cpp file, copy the contents of the provided Lab Template (all of your programming assignments must start by copying the contents of the Lab Template into your main .cpp project file). Then below the "//Program logic" line add the following code exactly as it appears here: cout << "Hello World!" << endl; a. Visual Studio Code: Create a new empty file. Call it HelloHorld.cpp. Next, copy the program template provided in the instructions and paste it into your hello world file. Save. b. Now, locate the //Program logic" line add the following code exactly as it appears here: cout << "Hello World!" << endl; 3. Compile and run your code. 4. After it runs properly - Take a screen capture of the console and make your honor statement document with the screen capture. Finally zip and upload your program and honor statement. NOTE: Make sure the quotes are straight (") and not fancy (")
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Graphical User Interface
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.
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