Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102324 高梓杰 素数判断 Python3 Compile Error 0 MS 0 KB 159 2024-12-21 14:56:01

Tests(0/0):


Code:

a=int(input('输入一个大于等于3的正整数')) n=0 for i in range(3,a): if a%i==0: n+=1 if n>=3: print('prime') else: print('not prime')


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)