Answered step by step
Verified Expert Solution
Link Copied!

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

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

Discrete and Combinatorial Mathematics An Applied Introduction

Authors: Ralph P. Grimaldi

5th edition

201726343, 978-0201726343

More Books

Students also viewed these Programming questions