









Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Purpose: To help students become familiar with programming in C++ using Visual ... Next, students will add code to display the word "Hello World My Name is ...
Typology: Exams
1 / 15
This page cannot be seen from the preview
Don't miss anything!
Baton Rouge Community College STEM (Computer Science)
High Performance Computing Curriculum Module
Debra Miller Borskey, CS Associate Professor
LSU LASIGMA RET Summer 2014
Introduction to C++ using Visual Studio
Course: CSCI 192 Introduction to Computers: Programming Logic and Design
Purpose: To help students become familiar with programming in C++ using Visual Studio
Objectives: At the end of this module students will be able to:
Understand and use the basic programming constructs of C++ Manipulate C++ data types, such as integers and strings Isolate and fix common errors in C++ programs Apply object-oriented approaches to software problems in C++ Write small-scale C++ programs using the above skills Use an Integrated Development Environment to program in C++
Debug HelloWorldMyNameApp to see if the phrase "Hello World My Name is Your Name" appears in the console window.
Congratulations on completing the first walkthrough!
Steps may vary to Create, Check for Errors and Execute a C++ Program
32 Console Application on Right Hand Side, Name the Project – on the Bottom Center of the Dialog Box, next Click Ok – on the Bottom Right of the Dialog Box
Using the examples provided below and your notes, provide the logic for a C++ program that declares the necessary variables needed and then prompts you the user to input your first and last name, birth city, state, one hobby and your age. The program next calculates the number of years before you may withdraw Social Security given 62 begins eligibility. The program also calculates how much money you will have invested in Social Security provided 600 dollars a year is saved from your current age to age 62. The program should use good input prompts and output all input data plus calculations. (Be sure to clearly indicate all data in the output). Remember to use the necessary C++ statements as practiced in class.