English

Write a Function in C++ to Accept Four Integers. Find the Smallest Integer and Print It. - Computer Science 1

Advertisements
Advertisements

Question

 Write a function in C++ to accept four integers. Find the smallest integer and print it.

Answer in Brief

Solution

 # include <iostream.h>
void main ( )
{
int a, b, c, d, small ;
int min (int, int, int, int); //Prototype
cout << “Enter the four number :” <<endl;
cin >> a >> b >> c >> d;
small = min (a, b, c, d); //function call
cout << “The smallest number is :” <<small;
}
// function definition
int min (int n1, int n2, int n3, int n4)
}
int low;
if (n1 < n2)
low = n1;
else
low = n2;
if (n3 < low)
low = n3;
if (n4 < low)
low = n4;
return (low);

shaalaa.com
C++ Programming
  Is there an error in this question or solution?
2018-2019 (February) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×