हिंदी

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

Advertisements
Advertisements

प्रश्न

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

संक्षेप में उत्तर

उत्तर

 # 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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2018-2019 (February) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×