주어진 방정식으로 프로그램은 a+b<=n이고 x로 나눌 수 있는 'a'의 값을 찾아야 합니다.
알고리즘
START Step 1 -> Declare start variables b=10, x=9, n=40 and flag=0, divisible Step 2 -> Loop For divisible = (b / x + 1 ) * x and divisible <= n and divisible += x IF divisible - b >= 1 Print divisible-1 Set flag=1 End END STOP
예시
#include <stdio.h> int main(int argc, char const *argv[]) { int b=10, x=9, n=40, flag = 0; int divisible; for (divisible = (b / x + 1 ) * x ; divisible <= n; divisible += x) { if ( divisible - b >= 1) { printf("%d ", divisible - b ); flag = 1; } } return 0; }
출력
위의 프로그램을 실행하면 다음 출력이 생성됩니다.
8 17 26