Computers and Technology
27.02.2022 17:29
222
302
5
Solved by an expert

In this chapter, you learned that although a double and a decimal both hold floating-point

In this chapter, you learned that although a double and a decimal both hold floating-point numbers, a double can hold a larger value. Write a C# program named DoubleDecimalTest that declares and displays two variables—a double and a decimal.
Show Answers
IsabellaGracie
IsabellaGracie
4,6(23 marks)

The DoubleDecimalTest class is as follows:

using System;

class DoubleDecimalTest {

 static void Main() {

     double doubleNum = 173737388856632566321737373676D;

     decimal decimalNum = 173737388856632566321737373676M;

   Console.WriteLine(doubleNum);

   Console.WriteLine(decimalNum);

 }

}

Explanation:

Given

See attachment for complete question

Required

Program to test double and decimal variables in C#

This declares and initializes double variable doubleNum

     double doubleNum = 173737388856632566321737373676D;

This declares and initializes double variable decimalNum (using the same value as doubleNum)

     decimal decimalNum = 173737388856632566321737373676M;

This prints doubleNum

   Console.WriteLine(doubleNum);

This prints decimalNum

   Console.WriteLine(decimalNum);

As stated in the question, the above program will fail to compile because the decimal value is out of range.

To ensure that the program runs well, it's either the decimal value is reduced to within its range or it is comment out of the program.


In this chapter, you learned that although a double and a decimal both hold floating-point numbers,
tykeria58
tykeria58
4,5(22 marks)

A Medicine Walk is a facilitated walk in nature that allows you to slow down, tune in, shift consciousness, and receive the medicine that your soul needs.

I hope this helps

Popular Questions about the subject: Computers and Technology

Complete the function to return the factorial of the parameter using...
Computers and Technology
02.10.2022 02:14
Complete the function to return the factorial of the parameter using...
Computers and Technology
22.04.2023 11:36
What tool is Bess using? Bess is working with a team of developers on...
Computers and Technology
22.06.2020 15:36
If you can t get the keys away from a drunk friend, it is better to...
Computers and Technology
28.05.2020 22:57
The decision to store attributes in database tables depends on the processing...
Computers and Technology
30.03.2022 23:26
An opponent of the corporate media system would probably say that the...
Computers and Technology
18.04.2021 09:49
National public radio is controlled by a combination of government,...
Computers and Technology
24.05.2023 02:23
What nation has the highest per capita ratio for video game addiction...
Computers and Technology
06.04.2021 06:13
Imagine you are having a conversation about simulation training programs...
Computers and Technology
27.07.2020 11:29
Write a program that will take an integer and add up each of the number’s...
Computers and Technology
28.10.2021 03:24

New questions by subject

Find the inverse of the function f f (x ) equals 9 x + 7...
Mathematics
26.11.2020 00:56
Explain how science uses fossil evidence to support the theory of evolution...
Biology
15.03.2020 03:10
The table and the graph show the height and weight of ten basketball...
Mathematics
23.12.2022 02:21
I NEED 3 CHARACTERISTICS OF THE CRUST, MANTLE, INNER CORE AND OUTER...
Chemistry
07.02.2023 16:12
Please help me im bad at math i dont think its that hard...
Mathematics
05.06.2021 21:52
1/8 divided by ? = 1/40...
Mathematics
13.04.2020 17:40
My brain:Wait what... my face:0o0 If time is money... does that mean......
English
13.06.2021 05:41
#
#
#
#
# #

We expand our knowledge with many expert answers