1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
goblinko [34]
3 years ago
12

Write a C++ Win32 Console Application that will use nested for loops to generate a multiplication table from 1 x 1 to 10 x 10. U

se the "tab" escape sequence ("\t") to format the table properly.
Computers and Technology
1 answer:
aleksandrvk [35]3 years ago
5 0

Answer:

#include <iostream>

using namespace std;

int main()

{

for (int outer = 1; outer <= 10; outer++)

{

 for (int inner = 1; inner <= 10; inner++)

 {

  cout << inner << "\tx\t" << outer << "\t=\t" << inner*outer << endl;

 }

 cout << endl;

}

}

Explanation:

I think when you replace the tabs by spaces, the layout is more pleasing. Couldn't figure out if you can override the default tab size of 8 characters...

You might be interested in
How many possible values will an eight bit audio sample have
juin [17]
I think an eight but audio sample has 256 possible values.
6 0
3 years ago
In a @return tag statement the description:
Bond [772]

Answer:

Option A is the correct choice answer for the above question.

Explanation:

The programming concept says that every function returns some value. If the return value is not defined by the user then the function returns the garbage value otherwise it returns the defined value by the user.

The return value is defined by the user with the help of the "return" statement and with the help of the following syntax-

return value; // The return statement.

Hence the option A is right because it satisfies the above concept while the other is not because--

  • Option B states that it must be longer than one line which is not correct.
  • Option C states that it cannot be longer than one line but this line does not make any sense about the returned statement.
  • Option D states that it describes the parameter value which is the wrong definition about the returned statement.
6 0
3 years ago
Read 2 more answers
What are business rules​
meriva

Answer:

defines or constrains some aspect of business and always resolves to either true or false. It specifically involves terms, facts and rules

Explanation:

5 0
3 years ago
What is the reason for taking care of design a good computer human interface ​
Alex73 [517]

Answer:

So you can communicate very well and interact with other people.

6 0
3 years ago
What are some pros and cons of being a Computer Hardware Engineer?
olganol [36]
Pros: Median salary is high (about $108,430), Employable in many different industries, like product manufacturing, computer systems design and scientific research.
Cons: Limited job growth, often requires long hours.
8 0
4 years ago
Other questions:
  • What is the output of this code? import java.util.HashSet; class A { public static void main(String[ ] args) { HashSet set = new
    15·1 answer
  • In object-oriented analysis, objects possess characteristics called _____.â
    14·1 answer
  • Hey im trying to get a refund because i got charged 24$ for the yearly plan and i didnt know i would get charged can i get the y
    11·1 answer
  • A(n) ____ is a collection of one or more program statements combined to perform some action
    14·1 answer
  • Which examples demonstrate common Network Systems workplaces and employers? Check all that apply.
    13·2 answers
  • Which of the following is an upper body workout
    6·2 answers
  • Software built and delivered in pieces is known as
    14·2 answers
  • Which is an advantage of using a flat file instead of a relational database?
    5·1 answer
  • How to do the for loop in python
    12·1 answer
  • _____________programs and features are often integrated into video editing software.
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!