Write a C++ program that displays your name. Josh July 29, 2017 cpp exercise /* For more exercises and lessons, visit http://shegertech.blogspot.com/ or shegertech.com */ #include <cstdlib> #include <iostream> using namespace std; int main(){ cout<<"My name is Josh"<<endl; system("PAUSE"); return 0; } Share: Email ThisBlogThis!Share to XShare to Facebook Related Posts:Given the following pseudo code, write a program that executes it. Write a program that determines a student’s grade. The program will read three types of scores (quiz, mid-term, and final scores) and determine the grade based on the below rules.Write a program that accepts a number from a user and tells whether the number is even or odd. Write a C++ program that prompts the user to input three integer values and find the greatest value of the three values.Write five C++ statements to print the asterisk pattern as shown below.