Please do the following programs in C++ complier. Do all the programs. I will give upvote straight away.
1) Write a program that uses a menu. Use a while loop in your code. Ensure your menu has an option to quit the program.
2)Write a program that creates an int array of size 10, then uses a for-loop to populate the array with numbers from your favorite number pattern.
3) Write a function that accepts an array as input then changes the contents of the array.
3.
Program:
#include <iostream>
using namespace std;
void change(int arr[], int n);
int main() {
int arr[50]; // variable Declaration
int n; // variable Declaration
cout<<"Enter number of elements in the array: ";
cin>>n; // accept the number of elements
cout<<"Enter array elements:\n";
for(int i=0; i<n; i++) // loop to accept elements
cin>>arr[i];
cout<<"Array elements before chnaging: ";
for(int i=0; i<n; i++) // loop to print elements
cout<<arr[i]<<" ";
change(arr, n);
cout<<"Array elements after chnaging: ";
for(int i=0; i<n; i++) // loop to print elements
cout<<arr[i]<<" ";;
cout<<endl;
return 0;
}
void change(int arr[], int n){ // called function
cout<<"\nEnter new array elements you want to change: ";
for(int i=0; i<n; i++) // loop to print elements
cin>>arr[i];
}
output:

Please do the following programs in C++ complier. Do all the programs. I will give upvote...
Please I need code in C++ Write a program that creates an int array of size 10, then uses a for-loop to populate the array with numbers from your favorite number pattern.
C++
This week, you are to create two separate programs, first using a simple array and the second using a 2D-array (matrix). [Part 1] Write a program that accepts exactly ten (10) integer numbers from the user and stores them in an array. In a separate for-loop, the program then goes through the elements in the array to print back: (i) The sum of the 10 numbers, (ii) the minimum value from the 10 numbers, and (iii) the maximum value...
c++ question, i put the txt attachment picture for this
question... please include comments on calculations and
varibles
Description In this program, you will write a program to emulate a vending machine (somewhat). In this version of the program, you will use a struct type defined below struct snackType string name; string code; double price; int remaining; Where name contains the snack's name, code contains the 2 digit code for the item, price holds the item's price, and remaining holds...
This is done in c programming and i have the code for the
programs that it wants at the bottom i jut dont know how to call
the functions
Program 2:Tip,Tax,Total
int main(void)
{
// Constant and Variable Declarations
double costTotal= 0;
double taxTotal = 0;
double totalBill = 0;
double tipPercent = 0;
// *** Your program goes here ***
printf("Enter amount of the bill: $");
scanf("%lf", &costTotal);
printf("\n");
// *** processing ***
taxTotal = 0.07 * costTotal;
totalBill...
C++, Will Upvote: A) Try to get the following programs to run in your environment. B) If the programs will run, document each line of code with comments and describe any changes you had to make to the original code to get it to work. If the programs are unable to be modified to run with desirable results, explain why you think so. C) Description your solution and a synopsis of how your code is intended to work and the...
The purpose of this assignment is to get experience with an
array, do while loop and read and write file operations.
Your goal is to create a program that reads the exam.txt file
with 10 scores. After that, the user can select from a 4 choice
menu that handles the user’s choices as described in the details
below. The program should display the menu until the user selects
the menu option quit.
The project requirements:
It is an important part...
I need a c++ code please. 32. Program. Write a program that creates an integer constant called SIZE and initialize to the size of the array you will be creating. Use this constant throughout your functions you will implement for the next parts and your main program. Also, in your main program create an integer array called numbers and initialize it with the following values (Please see demo program below): 68, 100, 43, 58, 76, 72, 46, 55, 92, 94,...
***Please give the java code for the below and add comments for different areas for a dummy to understand*** This java program will combine the techniques of handling arrays, decision control statements, and loops. Your program should accomplish the following: Build an array that holds characters (size 35) Load the array with random capital letters (use random generator) Your program should present a menu to the user allowing for the following “actions”. To “search” for a target letter of the...
using c++
13 do pretty much whatever they want Exercise: Array Resizing You will create an array manipulation program that allows the user is to pre much whatever meant to ananas Wananching the program the user will passat are the contains a set of value and that w 2 Check to see the could be opened at the program was not opened the continue 3. Create an array and with the values from Presente en de h and powermany reded...
Objectives: Integer arithmetic, Functions, menus. Write a C++ program that displays the following menu of choices. 1. Find the number of digits in an integer. 2. Find the nth digit in an integer. 3. Find the sum of all digits of an integer. 4. Is the integer a palindrome? 5. Quit Enter a choice: Page 1 of 4 For each of the choices (1, 3, 4), Read a positive integer number and call a function that processes the menu choice...