Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assume that price is an integer variable whose value is the price (in US currency) in cents of an item. Write a statement that prints

Assume that price is an integer variable whose value is the price (in US currency) in cents of an item. Write a statement that prints the value of price in the form "X dollars and Y cents". So, if the value of price was 4321, your code would print "43 dollars and 21 cents". If the value was 501 it would print "5 dollars and 1 cents". If the value was 99 your code would print "0 dollars and 99 cents".

Please provide solution in Visual Basic only. Lines 9-12 were the input I provided. Thanks

1 Imports System.Math 2 Imports System.Windows.Forms 3 4 Module CTest 5 Sub Main() 6 DIM textBox as TextBox 7 DIM price AS Integer 8 
9 Dim dollars as Integer, cents as Integer 10 dollars = (price - price Mod 100)/100 11 cents = price Mod 100 12 (dollars & " dollars and " & cents & " cents") 
13 14 15 End Sub 16 End Module 

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

SQL Antipatterns Avoiding The Pitfalls Of Database Programming

Authors: Bill Karwin

1st Edition

1680508989, 978-1680508987

Students also viewed these Databases questions

Question

What is a trigger, and what is its purpose? Give an example.

Answered: 1 week ago

Question

What are Measures in OLAP Cubes?

Answered: 1 week ago

Question

How do OLAP Databases provide for Drilling Down into data?

Answered: 1 week ago

Question

How are OLAP Cubes different from Production Relational Databases?

Answered: 1 week ago