#include #include //What is the problem with this program? (At bottom) //The program should double a number that is input by the user int main() { int i; printf("enter a number between 1-4: "); scanf("%d", &i); switch(i) { case 1: i = i+1; case 2: i = i + 2; case 3: i = i+3; case 4: i = i+4; } printf("i = %d\n", i); system("pause"); } //no break statement inside the case statements.