so a description of a mask tool that is used like painters tape to section off a spot so you do not chage that area
hope this helps
-scav
True cause sometimes it can delete all ur work
Ground wire and i believe it is yellow and green
Answer:
In C++:
#include<iostream>
#include<vector>
using namespace std;
int main(){
int len, num;
vector<int> vect;
cout<<"Length: ";
cin>>len;
for(int i = 0; i<len;i++){
cin>>num;
vect.push_back(num);}
vector<int>::iterator iter;
for (iter = vect.end() - 1; iter >= vect.begin(); iter--){
cout << *iter << ", ";}
}
Explanation:
This declares the length of vector and input number as integer
int len, num;
This declares an integer vector
vector<int> vect;
This prompts the user for length
cout<<"Length: ";
This gets the input for length
cin>>len;
The following iteration gets input into the vector
<em> for(int i = 0; i<len;i++){</em>
<em> cin>>num;</em>
<em> vect.push_back(num);}</em>
This declares an iterator for the vector
vector<int>::iterator iter;
The following iterates from the end to the beginning and prints the vector in reverse
<em> for (iter = vect.end() - 1; iter >= vect.begin(); iter--){</em>
<em> cout << *iter << ", ";}</em>
<em />
<em />
Answer: the accounting number format
Explanation:
The standard accounting number format usually contains a dollar sign, a thousands separator and two decimal points, the dollar sign is locked to the far left side of the cell in an enclosure.
How to apply the accounting number format ;
I, select the range and right-click and choose Format Cells.
Ii. In the Format Cells Dialog box, with the Number Tab selected, choose Accounting
Iii. Accept the options shown below and click Ok.
The Accounting Format has been applied.