摘要: 利用异或门加密的原理 print(True ^ True) print(False ^ False) print(True ^ False) print(True ^ False) print(1 ^ 1) print(0 ^ 0) print(1 ^ 0) print(0 ^ 1) 对内容进行简单 阅读全文
posted @ 2021-10-25 20:52 シバ鳥 阅读(138) 评论(4) 推荐(0)
摘要: 编写伪代码 Set limit to number of values to sum #设置最多次数 While(counter<limit) #进行循环 Read num #满足条件则读取数值 Set sum to sum+num #对读入的数相加 Set counter to counter+1 阅读全文
posted @ 2021-10-25 11:05 シバ鳥 阅读(57) 评论(1) 推荐(0)