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
WARNING:<br><br> when people put links in the answer it is a virus DO NOT DOWNLOAD IT
kobusy [5.1K]

Answer:

Thank you for this!

Explanation:

I was about to click it on a question I saw.

6 0
2 years ago
Read 2 more answers
How should employees talk to clients)
s344n2d4d5 [400]

Answer:

Explanation:

Respectfully and calmly

3 0
3 years ago
An unknown relative passes away and bequeaths upon you a small tract of land in Amherst. You decide to build a two-story storage
Ratling [72]

Answer: It does make sense, because I've been involved in these careers and have a long family line of them. And other questions?

Explanation:

7 0
2 years ago
1. A team of students have designed a battery-powered cooler, which promises to keep beverages at a high-drinkability temperatur
Anit [1.1K]

Answer:

Minimum electrical power required = 3.784 Watts

Minimum battery size needed = 3.03 Amp-hr

Explanation:

Temperature of the beverages, T_L = 36^0 F = 275.372 K

Outside temperature, T_H = 100^0F = 310.928 K

rate of insulation, Q = 100 Btu/h

To get the minimum electrical power required, use the relation below:

\frac{T_L}{T_H - T_L} = \frac{Q}{W} \\W = \frac{Q(T_H - T_L)}{T_L}\\W = \frac{100(310.928 - 275.372)}{275.372}\\W = 12.91 Btu/h\\1 Btu/h = 0.293071 W\\W = 12.91 * 0.293071\\W_{min} = 3.784 Watt

V = 5 V

Power = IV

W_{min} = I_{min} V\\3.784 = 5I_{min}\\I_{min} = \frac{3.784}{5} \\I_{min} = 0.7568 A

If the cooler is supposed to work for 4 hours, t = 4 hours

I_{min} = 0.7568 * 4\\I_{min} = 3.03 Amp-hr

Minimum battery size needed = 3.03 Amp-hr

6 0
3 years ago
Water enters a boiler at a temperature of 110°F. The boiler is to produce 2000 lb/hr of steam at a pressure of 130 psia. How man
strojnjashka [21]
Yes it does the answer is no
5 0
2 years ago
Other questions:
  • How I do I get nut out of sheets​
    8·2 answers
  • The type of current that flows from the electrode across the arc to the work is called what?
    5·1 answer
  • An AC sine wave has an effective value of 100V what’s the peak value of the waveform
    6·1 answer
  • Is a 68.75 and a 70 a pass in 5th grade?
    10·2 answers
  • A team member who has been a good worker for many years has recently been doing poor work. You suspect that he may be tired of h
    6·1 answer
  • Draw a flowchart to represent the logic of a program that allows the user to enter values for the current year and the user’s bi
    14·1 answer
  • Is the pure fission bomb a nuclear bomb?
    5·1 answer
  • Write down about the water source selection criteria​
    9·1 answer
  • What is the primary difference between the process of lost-wax casting as practiced in ancient times and that same process today
    13·1 answer
  • If a population has no predadors and plenty of available resources, how might that population change
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!