Texts: Programming C++
Write a program whose inputs are three integers, and whose output is the smallest of the three values.
Ex: If the input is:
7 15 3
the output is:
3
494090.2694856.qx3zqy7
LAB ACTIVITY
2.10.1: LAB: Smallest number
main.cpp
Load default
#include <iostream>
using namespace std;
int main() {
/* Type your code here. */
return 0;
}