003-006-008

Combining Multiple Type Conversions

Medium

Problem Description

Combining Multiple Type Conversions

Learning Objective: Understand how to combine casting conversions between different types

Overview

Create a program that performs conversions between multiple data types and outputs each result.

Specifications

  • Initialize a double variable original with 123.456
  • Cast to int type and assign to intValue
  • Cast intValue to char type and assign to charValue
  • Output all three values in order

Output Format

Original: 123.456
Int: 123
Char: {

Note: ASCII code 123 is '{'

Ready to Try Running Code?

Log in to access the code editor and execute your solutions for this problem.

Don't have an account?