我正在尝试使用 scanf 编写 MPI 代码,它将单独为所有进程获取输入,但只有一个进程从用户那里获取输入,而其他进程将垃圾值分配给该变量。程序如下
#include <stdlib.h>
#include <stdio.h>
#include "mpi.h"
#include<string.h>
int main(int argc, char* argv[])
{
int i, size, rank;
int arr;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &size);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
printf("Enter the number\n");
scanf("%d",&i);
printf("%d\n",i);
MPI_Finalize();
exit(0);
}