분류 | 게시판 |
베스트 |
|
유머 |
|
이야기 |
|
이슈 |
|
생활 |
|
취미 |
|
학술 |
|
방송연예 |
|
방송프로그램 |
|
디지털 |
|
스포츠 |
|
야구팀 |
|
게임1 |
|
게임2 |
|
기타 |
|
운영 |
|
임시게시판 |
|
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main(void)
{
clock_t inittime = clock();
int a, b, c;
int count= 0;
double seconds;
clock_t start, finish;
{
srand((unsigned)time(NULL));
start=clock();
for(a=1 ; a<=1500 ; a++)
{
for(b=1 ; b<=1500 ; b++)
{
for(c=1 ; c<=1500 ; c++)
{
if((a*a+b*b)==c*c)
if(a>b)
printf("%d %d %d\n", a, b, c);
if((a*a+b*b)==c*c)
if(a>b)
{count=count+1;
printf("총 갯수 : %d\n", count);
}}}}}
finish=clock();
seconds=(double)(finish-start)/CLOCKS_PER_SEC;
printf("TIME(seconds): %if", seconds);
return 0;
}
여기서 다 되는데 시간이 잘못 나오네요.
아무래도 빌드할 때 시간변수를 초기화 시켜서 해야할 것 같은데
책에는 나오지를 않네요 망할책ㅠㅠ
그래서 그런데 어떻게 하면 시간이 제데로 나올수 있을까요?
(제발 시간말고 딴거로 태클걸지마요 이거만드느라고 힘들었어요ㅠㅠ
어차피 빌드는 되니까 제발ㅠㅠ)
죄송합니다. 댓글 작성은 회원만 가능합니다.