
Create a program named Reverse3 whose Main() method declares three integers named firstInt, middleInt, and lastInt.
Assign the following values to the integers:
23 to firstInt
45 to middleInt
67 to lastInt
Then display the values and pass them to a method named Reverse that accepts them as reference variables, places the first value in the lastInt variable, and places the last value in the firstInt variable.
In the Main() method, display the three variables again, demonstrating that their positions have been reversed.
using static System.Console;
class Reverse3
{
static void Main()
{
int firstInt = 23;
int middleInt = 45;
int lastInt = 67;
Console.WriteLine("Before reversing: firstInt: " + firstInt + ", middleInt: " + middleInt + ", lastInt: " + lastInt);
Reverse(ref firstInt, ref middleInt, ref lastInt);
Console.WriteLine("After reversing: firstInt: " + firstInt + ", middleInt: " + middleInt + ", lastInt: " + lastInt);
}
public static void Reverse(ref int a, ref int b, ref int c)
{
int temp = c;
c = a;
a = temp;
}
}

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

- IN C# PLEASE Create class Cube. The class has attributes length and width and depth, each of which defaults to 1. It has read-only properties that calculate the Perimeter and the Area for a side of the cube, and another that calculates the cubed feet for the cube. (You will have to research how to do that calculation online) It has properties for length and width and depth. The set accessors should verify that length and width and depth are all floating-point numbers greater than 0.0 and less than 20.0. Write an app to test class Cube by creating 3 cubes of different sizes.arrow_forwardWhen you want a method to be able to change the value of a variable that is passed to it as an argument, the variable must be __________. a. passed by reference b. a local variable c. passed by value d. a named constantarrow_forwardMicrosoft Visual C# 7th edition. In Chapter 7, you modified the GreenvilleRevenue program to include a number of methods. Now, using your code from Chapter 7 Case Study 1, modify your program so every data entry statement uses a TryParse() method to ensure that each piece of data is the correct type. Any invalid user entries should generate an appropriate message that contains the word Invalid, and the user should be required to reenter the data. Cengage requirement for the shaded part is attached and I don't understand it. I need help with the highlighted part (getContestantData() method) please. Thanks using System; using static System.Console; using System.Globalization; class GreenvilleRevenue { static void Main() { int numLastYear; int numThisYear; double revenue; int fee = 25; const int MAX_CONTESTANTS = 30; string[] names = new string[MAX_CONTESTANTS]; char[] talents = new char[MAX_CONTESTANTS]; char[] talentCodes = { 'S', 'D', 'M', 'O'…arrow_forward
- Create a program named Reverse3 whose Main() method declares three integers named firstInt, middleInt, and lastInt. Assign the following values to the integers: 23 to firstInt45 to middleInt67 to lastIntThen display the values and pass them to a method named Reverse that accepts them as reference variables, places the first value in the lastInt variable, and places the last value in the firstInt variable. one of my tasks isn't working my task is to Function Reverse reverses the position of three integers and I'm getting this error with my code the method Reverse did not reverse the integer arguments as expected. this is my codearrow_forward2please write in C#arrow_forwardPlease help using Javaarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





