Advertisements
Advertisements
प्रश्न
Write a program in C++ to read three integers and find smallest of these numbers:
कोड लेखन
उत्तर
void main ()
{ int a; b; c;
cout<< " Enter three no. = ";
cin >> a>>b>>c;
int small = a;
if (b < small)
{ small = b; }
if ( c < small )
{ small = c; }
cout<<" /n smallest no = "<< small;
getch ();
}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?