Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Am I doing this correctly, This is code for Visual studio and we have to write exactly what it is doing I just want to
Am I doing this correctly, This is code for Visual studio and we have to write exactly what it is doing
I just want to make sure for C that i amd doing that one correctly
c = b*4+a
So it's taking the out part of B and multiplying it by 4 then adding the output of A correct?
A = txtA.Text
B = txtB.Text
C = txtC.Text
a = a * 2 + b
b = a *3+b
c = b*4+a
OutA.Text = a
OutB.Text = B
OutC.Text = C
Output of A would be = 7 * 2 + 9 = 23
Output of B would be = 7 * 3 +9 = 28
Output of C would be = 28 * 4 + 23 = 135
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started