学习OpenMP的第一个程序(解决:undefined reference to `omp_get_thread_num‘)
一、问题1.源代码#include#include"omp.h"//#incluce""格式:引用非标准库的头文件,编译器从用户的工作目录开始搜索intmain(intargc,char*argv[]){intnthreads,tid;#pragmaompparallelprivate(nthreads,tid)//{花括号写在这会报错{tid=omp_get_thread_num();print