-1

私はスレッドプログラミングを行っており、Pi 値を計算するためのモンテカルロ手法を実装しようとしています。コードをコンパイルしましたが、エラーはありませんが、実行すると出力が得られません。間違いがあれば、よろしくお願いします。

これが私のコードです:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <pthread.h>

#define frand() ((double) rand() / (RAND_MAX))
#define MAX_LEN 1353
const size_t N = 4;
float circlePoints=0;
void* point_counter(void *param){
    float xcord; 
    float ycord; 
    while(MAX_LEN){

        xcord=frand();
        ycord=frand();
        float cord = (xcord*xcord) + (ycord*ycord);

        if(cord <= 1){
            circlePoints++;}
    }
}

int main()
{
    printf("out");
    size_t i;
    pthread_t thread[N];

    srand(time(NULL));
    for( i=0;i <4;++i){
        printf("in creating thread");
        pthread_create( &thread[i], NULL, &point_counter, NULL);
    }
    for(i=0;i <4;++i){
        printf("in joining thread");
        pthread_join( thread[i], NULL );
    }
    for( i=0;i <4;++i){
        printf("in last thread");
        float pi = 4.0 * (float)circlePoints /MAX_LEN;

        printf("pi is %2.4f: \n", pi);
    }
    return 0;
}
4

3 に答える 3

4

ここで無限ループに陥っています。

while(MAX_LEN){

以来MAX_LEN、非ゼロのままです。

その前に出力が表示されない理由については、改行が書式文字列に含まれていない限り、呼び出し後に printf がフラッシュされないのはなぜですか?を参照してください。

于 2013-10-13T08:15:20.237 に答える
1
while(any_non_zero_number_which does_not_update)
{
    infinite loop            //not good unless you intend it that way
}
于 2013-10-13T08:17:52.253 に答える