One way is to : From the Format menu, select Properties and Formatting. From the left, click Layout. Select the Automatically fit rows check box. Click OK to apply changes and return to the document.
Another way is to : Click on the row heading that needs to be changed. Place the mouse pointer underneath that row, drag the separator downwards until the desired height.
Answer:
Categories
date
From
Show in Groups
type
Explanation: Just took the test!!!
Answer:
Following are the program in C++ language :
#include <iostream> // header file
using namespace std; // using namespace
int main() // main method
{
int amount,total=0; // two int variable declaration
cout<<" enter amount:";
cin>>amount; // read input amount first time
total=total+amount; // first calculation
cout<<" enter amount:";
cin>>amount; //read input amount second time
total=total+amount;// second calculation
cout<<" enter amount:";
cin>>amount;// read input amount third time
total=total+amount;// third calculation
cout<<"total:"<<total; // display total
return 0;
}
Output:
enter amount:12
enter amount:12
enter amount:12
total:36
Explanation:
Following are the explanation of program which is mention above
- Declared the two variable total and amount of int type .
- Initialize the variable total to "0".
- Read the 3 input in "amount" variable in one by one by using cin function and adding their value to the "total "variable .
- Finally display the total.
Answer:
a language that computers use
Explanation:
Coding can come in many different forms but it is all used on the computer and then translated.
Answer: Have you gotten an answer yet?