Signed-off-by: 10-5 <sairate@sina.cn>
This commit is contained in:
commit
8d7620a001
|
@ -0,0 +1,3 @@
|
|||
# 默认忽略的文件
|
||||
/shelf/
|
||||
/workspace.xml
|
|
@ -0,0 +1,6 @@
|
|||
<component name="InspectionProjectProfileManager">
|
||||
<settings>
|
||||
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||
<version value="1.0" />
|
||||
</settings>
|
||||
</component>
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Black">
|
||||
<option name="sdkName" value="Python 3.12" />
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12" project-jdk-type="Python SDK" />
|
||||
</project>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/薛旻烨.iml" filepath="$PROJECT_DIR$/.idea/薛旻烨.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="PYTHON_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
|
@ -0,0 +1,22 @@
|
|||
#平均年龄
|
||||
# n = int(input())
|
||||
# sum = 0
|
||||
# for i in range(1,n+1):
|
||||
# sum += int(input())
|
||||
#
|
||||
# print("%.2f"%(sum/n))
|
||||
|
||||
#角谷猜想
|
||||
# n = int(input())
|
||||
# sum = 0
|
||||
# while n!=1:
|
||||
# if n%2:
|
||||
# b=n*3+1
|
||||
# print(n,"*3+1",sep="")
|
||||
# n=b
|
||||
# else:
|
||||
# b=n//2
|
||||
# print(n,"/2=",b,sep="")
|
||||
# n=b
|
||||
# print("end")
|
||||
|
Loading…
Reference in New Issue