摘要: #include "stdafx.h" #include #include int main(int argc, char* argv[]) { printf("Hello World!\n"); srand(time(0)); for (int i=0;i<10;i++) { printf("%x ",(int)rand()%1000); } printf("\n"); ... 阅读全文
posted @ 2007-10-16 16:51 ahuo 阅读(259) 评论(0) 推荐(0) 编辑