奇怪题解(语言:Pycython)
2025-06-07 18:46:30
发布于:浙江
2阅读
0回复
0点赞
class Std:
def __init__(self,object=lambda : globals()):
self.glo=object
def __lshift__(self,other):
print(other,end='')
return self
def __rshift__(self,other):
gs=self.glo()
dtype=type(other)
for k,v in gs.items():
if v is other:
self.glo()[k]=dtype(input())
return self
cin=Std();
cout=Std();
a=0;
b=0;
cin>>a;
for i in range(2,a):
if a%i==0:
cout<<a//i;
break;
这里空空如也
有帮助,赞一个