Given an integer variable i and a floating-point variable f, write a statement that writes both of their values to standard output in the following format: i=value-of-i f=value-of-f. Thus, if i has the value 25 and f has the value 12.34, the output would be i=25 f=12.34.
LANGUAGE: Visual Basic
CHALLENGE:
Given an integer variable i and a floating-point variable f, write a statement that writes both of their values to standard output in the following format: i=value-of-i f=value-of-f. Thus, if i has the value 25 and f has the value 12.34, the output would be i=25 f=12.34. But if i has the value 187 and f has the value 24.06, the output would be: i=187 f=24.06
SOLUTION:
The Bad News: The content you are trying to access is only available to members.
The Good News: You too can be a member, simply Click Here.
Already a member? Log In Here
Posted in Learn To Code, Visual Basic