0 LIKES LikeUnLike
include <iostream>using namespace std;int main (){int accu = 0;int x;for (x =10; x<=15; x++){ if (x >13) continue; accu = accu + x;}cout << x << " " << accu << endl;return 0;}....I know that the answer is 16 46...but i want to know why?thanks
Tags:
Report (0) (0) | earlier
Latest activity: earlier. This question has 2 answers.