Online Judge
Toggle navigation
童织码
首页
问题列表
状态
作业
帮助
登录
首页
状态
301181
Run ID
作者
问题
语言
测评结果
分数
时间
内存
代码长度
提交时间
301181
俞苈轩
【C2-1】输出是2的倍数,但非3的倍数的数
Python3
通过
100
161 MS
3788 KB
97
2024-11-22 20:33:55
Tests(3/3):
n=int(input()) a=1 while a <= n: if a % 2 == 0 and a % 3 != 0: print(a) a+=1
测评信息: