本文主要是介绍UVA 10127 - Ones(数论),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
UVA 10127 - Ones
题目链接
题意:求出多少个1组成的数字能整除n
思路:一位位去取模,记录答案即可
代码:
#include <stdio.h>
#include <string.h>int n;int main() {while (~scanf("%d", &n)) {int ans = 1;int now = 1;while (now) {now = (now * 10 + 1) % n;ans++;}printf("%d\n", ans);}return 0;
}
这篇关于UVA 10127 - Ones(数论)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!