/********************************************************** ** Program: lab2_values.cpp ** Authors: Both partners’ names ** Date: 4/6/2020 ** Description: Calculate min/max values. ***********************************************************/ #include using namespace std; int main() { int n_bits = 0; /* Number of bits to use for calculation. * Initialize to 0 before the user input. */ cout << "Enter the number of bits: "; cin >> n_bits; /* Write your code here to calculate and print: */ /* 1) Minimum signed value that can be stored in b bits */ /* 2) Maximum signed value that can be stored in b bits */ /* 3) Maximum unsigned value that can be stored in b bits */ return 0; }