Lab06.1

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> using namespace std; // Lab06 - implementar com funções do lab04.1 class Somatorio{ public: int x; int soma = 0; Somatorio (int y){ for (x = 0; x <= y; x++){ soma += x; } } void setSomatorio(int soma){ soma = 0; } int getSomatorio(){ return soma; } }; int main() { Somatorio obj(5); // obj é o objeto da classe Teste01 obj.setSomatorio(10); cout << obj.getSomatorio() << "\n"; return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines