首页
归档
瞬间
朋友圈
马杰如的博客
一切有为法,如梦幻泡影,如露亦如电,应作如是观。
累计撰写
5
篇文章
累计创建
6
个标签
累计收到
0
条评论
栏目
首页
归档
瞬间
朋友圈
目 录
CONTENT
代码-马杰如的博客
以下是
代码
相关的文章
2025-05-27
Python语言里的一些细节 ------- 整数比较
x=y=0 while True: if x is y: print(f"{x} is {y}") else: print(f"Attention! {x} not is {y}") break x+=1 y+=1 x=
2025-05-27
13
0
2
代码
2025-05-27
C++职工管理系统
#include<iostream> #include<string> using namespace std; //职工抽象类 class Worker { public: //显示个人信息 virtual void ShowInfo() = 0; //获取岗位名称 virtual str
2025-05-27
8
0
2
代码