profile picture

Anonymous

upvote

0

downvote

0

star

Hàm sau thực hiện công việc gì? def func(n): c = 0 for k in range(1, n): if n%k == 0 : c = c +k return c

clock icon

- asked 6 months agoVotes

message

0Answers

eye

0Views

Giải SBT Tin học 10 Kết nối tri thứcBài 26: Hàm trong Python

Câu 26.11 trang 55 SBT Tin học 10

def func(n):

c = 0

for k in range(1, n):

if n%k == 0 :

c = c +k

return c

Trả lời:

Hàm trả lại tổng các ước số thực sự của n, tính cả 1.

Bài tập liên quan

Write your answer here

© 2025 Pitomath. All rights reserved.