quiz حل الأسئلة الجامعية manage_search الأرشيف

تم الحل ✓
categoryبرمجة وتطوير البرمجيات schoolبكالوريوس event_available2026-07-13

السؤال

Transcribed Image Text:

Problem 4.) Write a class called Adder that stores the sum of all the integers given to it. Your Adder class should allow you to write the following code: // Sample code Adder sum1; Adder sum2(2); cout << "sum1 is " << sum1 << endl; cout << "sum2 is " << sum2 << endl; sum1 += 5; sum2 += -3; if (sum1 === sum2) cout << "sum1 and sum2 are the same" << endl; You should write only the functions that are necessary for adder to be used in the above program. Use const wherever appropriate, and do not write or use a cast operator. Make sure to include any necessary header files. Include a single private integer member sum. Hint: In addition to constructors, you will need to overload +=,==, and <<.

check_circle الجواب — حل مفصل خطوة بخطوة

hourglass_top