/* while (condition ) { stmt1; stmt2; .... stmtn; }//endwhile */ /*****************************************************************************/ /* computes the sum from 1-SIZE */ /*****************************************************************************/ #include using namespace std; int main() { const int SIZE = 200; int sum = 0; //initialize int n = 1; while (n <= SIZE) { sum = sum + n; n = n + 1; }//while cout << "Total from 1-"<