Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Type in the following program code. Write a comments that describe the variables declared in the program. Run and compile the program, and
1. Type in the following program code. Write a comments that describe the variables declared in the program. Run and compile the program, and determine its output. Inamespace ConsoleApplication1 } { class Program { static void Main(string[] args) { int shirtID = 0; String description = "-description required-"; char colorCode = 'U' ;| double price = 0.0; int quantityInstock = 0; Console.WriteLine("shirtID ID: "+shirtID); Console.WriteLine("Shirt Description: " + description); Console.WriteLine("Color Code: " + colorCode); Console.WriteLine("Shirt Price: " + price); Console.WriteLine("Quantity in Stock: " + quantityInstock); Console.ReadLine(); 2. Write a program to print the various data types in Java Language.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started