- 1
- 0
- 约5.55千字
- 约 12页
- 2026-07-06 发布于四川
- 举报
2025年计算机工程师试题及答案
1.题目:编写一个Python程序,实现一个简单的银行账户管理系统。该系统需要支持以下功能:
创建新账户
存款
取款
查询账户余额
显示所有账户信息
答案:
```python
classBankAccount:
def__init__(self,account_number,name,balance=0):
self.account_number=account_number
self.name=name
self.balance=balance
defdeposit(self,amount):
ifamount0:
self.balance+=amount
print(fDeposited{amount}.Newbalance:{self.balance})
else:
print(Invalidamount.Depositamountmustbepositive.)
defwithdraw(self,amount):
ifamount0a
您可能关注的文档
- 2025年(新)教师招聘笔试考试模拟测试题含答案.docx
- 2025年(最新)24日贵州贵阳遴选公务员考试考试(+答案).docx
- 2025年(最新)教师招聘考试全真模拟试题及答(+答案).docx
- 2025年《消费者行为学》考试试卷及答案.docx
- 2025年1+X失智老年人照护中级模拟考试题与答案.docx
- 2025年6月放射医学技术考试题及参考答案解析.docx
- 2025年12月大学英语六级模拟题库及答案.docx
- 2025年2023年教师资格《小学教育教学知识与能力》试卷及答案.docx
- 2025年2023年三支一扶之公共基础知识综合检测试卷含答案 .docx
- 2025年2023年注册会计师考试《财务成本管理》试卷含答案.docx
原创力文档

文档评论(0)