Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You Do It 58 Declaring and Using Variables In the following steps, you write a program that declares several integral variables, assigns values to them,

image text in transcribed image text in transcribed

You Do It 58 Declaring and Using Variables In the following steps, you write a program that declares several integral variables, assigns values to them, and displays the results. I. Open a new file. If you are using a simple text editor to write your C# programs, you will save the file as DemoVariables.cs. If you are using Visual Studio, select Console Application, name the project DemoVariables, and delete all the code in the program-editing window before starting. 2. Create the beginning of a program that will demonstrate variable use. Name the class DemoVariables, and type the class opening curly brace. using static System.Console; class DemoVariables 3. In the Main) method, declare two variables (an integer and an unsigned integer), and assign values to them. static void MainO int anInt =-123; uint anUnsignedInt 567 4. Add a statement to display the two values. WriteLine("The int is {0} and the unsigned int is {1}.", anInt, anUnsignedInt) 5. Add two closing curly braces-one that closes the Main) method and one that closes the DemoVariables class. Align each closing curly brace vertically with the opening brace that is its partner. In other words, the first closing brace aligns with the brace that opens MainC), and the second aligns with the brace that opens DemoVariables. 6. Save the program, and compile it. If you receive any error messages, correct the errors and compile the program again. When the file is error-free, execute the program. The output should look like Figure 2-10 Chapter. > DENoVar iab 1es Figure 2-10 Output of the DemoVariables program (continues)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Horse Betting The Road To Absolute Horse Racing 2

Authors: NAKAGAWA,YUKIO

1st Edition

B0CFZN219G, 979-8856410593

More Books

Students also viewed these Databases questions

Question

What are Decision Trees?

Answered: 1 week ago

Question

What is meant by the Term Glass Ceiling?

Answered: 1 week ago