This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main(void) | |
{ | |
int decimal[10002] = { 0, }; // 소수 따로 배열에 저장 | |
int d[170]; // 소수 총 169개 680바이트 | |
int sum,t,n1, n2,t1, t2; | |
int cnt = 0; | |
int cntsub; |