#python #anaconda #jupyter-notebook #visual-code #html #css #javascript #http

제목2020-2학기 기출문제2021-12-03 01:42
작성자

 

이 문제에서 채점을

1. 하나의 객체만 만들고 하는건지

a = IntegerAccumulator()

data = a.getNewInteger(1)
data = a.getNewInteger(2)
data = a.getNewInteger(3)

2. 여러개 객체를 만들어서 하는지 궁금합니다! 

a = IntegerAccumulator()
b = IntegerAccumulator()
c = IntegerAccumulator()

a.getNewInteger(1)
b.getNewInteger(2)
c.getNewInteger(3)
댓글