projecteuler_problem1

469 단어 프로 그래 밍c
problem1
주소:https://projecteuler.net/problem=1。 문제: 1000 내 3 또는 5 의 배수 의 합 을 찾 아 라.원본 코드:[email protected]:c-program/projecteuler.git。
#include 

#define MAXNUM 1000

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

    for (i = 1; i < MAXNUM; i = i + 2){
        if ((i % 3 == 0) || (i % 5 == 0)) iResult += i;
    }
    
    printf("Problem1 Answer: %d
", iResult); return 0; }

좋은 웹페이지 즐겨찾기