projecteuler_problem6

problem6

地址:https://projecteuler.net/problem=6。
源码:[email protected]:c-program/projecteuler.git。
问题:找到100和平方与平方和的差值。

#include 
#include 
#include "debug.h"

#define NUM 100

int main(int argc, char **argv){
    long int iResult = 0;
    int i, j;

    debugTime();

    for (i = 1; i < NUM; i++){
        for (j = i + 1; j <= NUM; j++){
            iResult += i * j;
        }
    }

    iResult *= 2;
    
    printf("Problem6  Answer: %ld\n", iResult);

    debugTime();

    return 0;
}

你可能感兴趣的:(编程,c)