标签: c++ random eclipse-cdt
由于某种原因,这段代码给了我一个错误,说" rand()无法解析为函数"。顺便说一句,我是C ++的新手。
#include <iostream> #include <cstdlib> int main() { int rand_val = (rand()%100)+1; std::cout << rand_val; return 0; }