Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Your allowed to switch lanes as long as the road is clear and you use signals.
Answer:
7.615 kW
Explanation:
Solution in pen paper form in the attachment section
Answer:
The dial bore gauge measures the inside of round holes, such as the bearing journals. This one tool can measure 2″ up to 6″ diameter holes. Both tools are needed in order to check the interior and exterior dimensions of the crankshaft, rods and engine block journals, as well as the thickness of the bearings themselves.
Hope it's helpful to you
pls mark me as brain list
Answer:
The three dimensions shown in an isometric drawing are the height, H, the length, L, and the depth, D
Explanation:
An isometric drawing of an object in presents a pictorial projection of the object in which the three dimension, views of the object's height, length, and depth, are combined in one view such that the dimensions of the isometric projection drawing are accurate and can be measured (by proportion of scale) to draw the different views of the object or by scaling, for actual construction of the object.