Please help me fix this code C++ All compare outputs say the same #include using namespace std; int main() { int value1,value2; cout<<"Enter first value "<>value1; cout<<"Enter second value "<>value2; if(value1

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter1: Fundamentals Of C++ Programming
Section1.3: Preliminary Three: Software Development
Problem 7E: (Statistics) This is the formula for the standard normal deviate, z, used in statistical...
icon
Related questions
Question

Please help me fix this code C++

All compare outputs say the same

#include <iostream>

using namespace std;

int main() {

int value1,value2;

cout<<"Enter first value "<<endl;

cin>>value1;

cout<<"Enter second value "<<endl;

cin>>value2;

if(value1<value2)

{

cout<<"Smallest value is "<<value1;

}

else

{

cout<<"Smallest value is "<<value2;

}

return 0;

}

Output differs. See highlights below. Special character legend
Input
Your output
Expected output
Input
3:Compare output
Output differs. See highlights below. Special character legend
Your output
6 17
Expected output
Enter first value.
Enter second value
Smallest value is 6
1 7
Enter first value.
Enter second value
Smallest value is 1
1
0/3
Transcribed Image Text:Output differs. See highlights below. Special character legend Input Your output Expected output Input 3:Compare output Output differs. See highlights below. Special character legend Your output 6 17 Expected output Enter first value. Enter second value Smallest value is 6 1 7 Enter first value. Enter second value Smallest value is 1 1 0/3
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Concept of Parenthesis
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning