Ask the user for a number between 1 and 11; stop asking when the user enters 0 OR when the total goes over 21. Display the total on the screen. For example:
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int num, total;
cout << "Enter a number between 1 and 11...