W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
#include
#include
#include
int main() { srand(time(NULL)); int x = rand() % 10; // 0..9 printf("%d\n", x); return 0; }