Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Never mind I figured it out. ************************************** I am doing a

ID: 3610357 • Letter: N

Question

Never mind I figured it out. ************************************** I am doing a tutorial exercise where I have an app thatconverts Clesius to Fahrenheit. I have coded it right withno compilation or syntax errors but I have a logic error. Itype in the value in the input textBox and click convert and getthe wrong answer. I am also suppose to use a castoperator to convert between types and perform floating-pointarithmetic and cast to an integer after all calculations have beenperformed. The formula I am using for the conversion is F= here is the code I typed in that is giving me the wrong answercan someone check this out and tell what I am doing wrong. //convert celsius to fahrenheit inResult = ((int) 9.0 / (int) 5.0) * IntInput + (int) 32; //display Result in Label lblResult.text = Convert.ToString (intResult) Never mind I figured it out. ************************************** I am doing a tutorial exercise where I have an app thatconverts Clesius to Fahrenheit. I have coded it right withno compilation or syntax errors but I have a logic error. Itype in the value in the input textBox and click convert and getthe wrong answer. I am also suppose to use a castoperator to convert between types and perform floating-pointarithmetic and cast to an integer after all calculations have beenperformed. The formula I am using for the conversion is F= here is the code I typed in that is giving me the wrong answercan someone check this out and tell what I am doing wrong. //convert celsius to fahrenheit inResult = ((int) 9.0 / (int) 5.0) * IntInput + (int) 32; //display Result in Label lblResult.text = Convert.ToString (intResult) here is the code I typed in that is giving me the wrong answercan someone check this out and tell what I am doing wrong. //convert celsius to fahrenheit inResult = ((int) 9.0 / (int) 5.0) * IntInput + (int) 32; //display Result in Label lblResult.text = Convert.ToString (intResult)

Explanation / Answer

Answered it myself no help needed thanks