Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96986 文苑 素数判断 Python3 Compile Error 0 MS 0 KB 149 2024-11-10 10:14:30

Tests(0/0):


Code:

n=int(input("输入一个大于等于3的正整数")) for i in range(4,n): if n%i==0: print("not prime") break else: print("prime")


Run Info:

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