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
algol [13]
3 years ago
10

Given numRows and numColumns, print a list of all seats in a theater. Rows are numbered, columns lettered, as in 1A or 3E. Print

a space after each seat, including after the last. Ex: numRows = 2 and numColumns = 3 prints:
Engineering
1 answer:
Arada [10]3 years ago
3 0

Answer:

#include <stdio.h>

int main(void)

{

  int Rows = 2;

  int Col = 3;

  int row = 0;

  char colm = 'A';

  char var = 'A';

   for (row = 1; row<=Rows; ++row){

 for (colm = 0; colm<Col; colm++){

    printf("%d", row);

    printf("%c ", var + colm % 3);

 }

}

        ++var;

     }

  }

  printf("\n");

  return 0;

}

You might be interested in
How frequently should vehicle registration be renewed?
sergeinik [125]

Answer:

When the renewal period comes around (with respect to the license expiry date).

Explanation:

5 0
2 years ago
weight of 1000 pounds is suspended from two cables. The allowable stress in the cables is 1500 psi. Find the minimum diameter fo
kari74 [83]

Answer:

The minimum diameter for each cable should be 0.65 inches.

Explanation:

Since, the load is supported by two ropes and the allowable stress in each rope is 1500 psi. Therefore,

(1/2)(Weight/Cross Sectional Area) = Allowable Stress

Here,

Weight = 1000 lb

Cross-sectional area = πr²

where, r = minimum radius for each cable

(1/2)(1000 lb/πr²) = 1500 psi

500 lb/1500π psi = r²

r = √1.061 in²

r = 0.325 in

Now, for diameter:

Diameter = 2(radius) = 2r

Diameter = 2(0.325 in)

<u>Diameter = 0.65 in</u>

7 0
3 years ago
Getting the bottom of your feet burned when walking on hot sand is due to what form of energy transmission? group of answer choi
Scilla [17]

Getting the bottom of your feet burned when walking on hot sand is due to a form of energy transmission known as conduction.

<h3>The types of energy transmission.</h3>

In Science, there are three (3) main types of energy transmission and these include the following:

  • Convection
  • Radiation
  • Conduction

In this scenario, we can infer and logically conclude that burning the bottom of your feet when walking on hot sand is primarily due to a form of energy transmission known as conduction because it involves the transfer of thermal energy (heat) due to the movement of particles.

Read more on heat conduction here: brainly.com/question/12072129

#SPJ12

6 0
1 year ago
What similarities do wind and solar energy share?
Viefleur [7K]

Answer:

Both come from the sun

Both are reusable sources

and both don't cause pollution

Explanation:

3 0
2 years ago
blank lines are used to see inside the product?blank lines are used to see inside the product what are they called ​
mixer [17]

Answer:

Do you have anymore information about this?

7 0
3 years ago
Other questions:
  • Two kg of N2 at 450 K, 7 bar is contained in a rigid tank connected by a valve to another rigid tank holding 1 kg of O2 at 300 K
    13·1 answer
  • Define the difference between elastic and plastic deformation in terms of the effect on the crystal lattice structure.
    5·1 answer
  • Consider a large plane wall of thickness L = 0.3 m, thermal conductivity k = 2.5 W/m · °C, and surface area A =12 m2. The left s
    6·1 answer
  • A cubic transmission casing whose side length is 25cm receives an input from the engine at a rate of 350 hp. If the vehicle's ve
    5·1 answer
  • A(n) ____ is an exact representation of an object projected onto a plane from a specific position.
    14·1 answer
  • What's the best way to plan an organized​
    7·1 answer
  • What does polarity give you information about?
    10·1 answer
  • A continuous function y = ƒ(x) is known to be negative at x = 0 and positive at x = 1. Why does the equation ƒ(x) = 0 have at le
    14·1 answer
  • For a bolted assembly with eight bolts, the stiffness of each bolt is kb = 1.0 MN/mm and the stiffness of the members is km = 2.
    14·1 answer
  • Report of invertor to convert 12 volt to 220 volt.
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!