LAB
3.23.1: LAB: Smallest number
ACTIVITY
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
â–ş Run
main.cpp
1
#include <iostream>
2
using namespace std;
3
4
int main() {
5
6
/* Type your code here. */
7
8
return 0;
9
}
DESKTOP CONSOLE