欧拉十二题
Posted 我不随便起名字
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了欧拉十二题相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
int main(void)
{
int count=1;
int i=70;
while(count<500)
{
count = 1;
int a= 2;
int b = (i+1)*i/2;
while (b > 1)
{
int t = 0;
while (b % a == 0)
{
b = b/a;
t++;
}
count *= t+1;
a++;
}
i++;
}
printf("%d", (i-1)*i/2);
}
以上是关于欧拉十二题的主要内容,如果未能解决你的问题,请参考以下文章