Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144174 陈怡笑 能否被3和5整除 C++ Compile Error 0 MS 0 KB 79 2026-01-19 21:34:46

Tests(0/0):


Code:

n=int(input()) if n %3%5==0: print("can") else: print("cannot")


Run Info:

Main.cc:1:1: error: 'n' does not name a type
 n=int(input())
 ^