解题思路:搞清楚关系即可
原数-个位数的五倍和原数是否同时为17的倍数
注意事项:
python一定要用//整除,不能用/除
参考代码:
n = int(input())
while n != 0:
if n == 0:
break
s = (n - n % 10) // 10
if (s - (n % 10) * 5) % 17 == 0 and n % 17 == 0:
print("1")
else:
print("0")
n = int(input())
0.0分
1 人评分
C语言训练-字符串正反连接 (C语言代码)浏览:727 |
数列 (C++代码)浏览:707 |
【绝对值排序】 (C++代码)浏览:720 |
简单的a+b (C++语言代码)浏览:895 |
大神老白 (C语言代码)浏览:690 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:368 |
C语言考试练习题_保留字母 (C语言代码)浏览:743 |
a+b浏览:452 |
DNA (C语言代码)浏览:440 |