-->
当前位置:首页 > 题库

PROGRAMMING:Judge whether an integer is a multiple of 3 or 7

Luz5年前 (2021-05-10)题库464
This topic requires reading in an integer to judge whether it is not only a multiple of 3, but also a multiple of 7.
###Input format:
Enter a positive integer
###Output format:
If the input positive integer is a multiple of 3 and 7, output yes, otherwise output No
###Input sample 1:
```in
twenty-one
```
###Output sample 1:
```out
yes
```
###Input sample 1:
```in
twenty-two
```
###Output sample 1:
```out
no
```







answer:If there is no answer, please comment