返回列表 发帖

[灌水]在MSN上看到几个喜欢的方块字

#include #include #include void main( void ) { int i; /* Seed the random-number generator with current time so that * the numbers will be different every time we run. */ srand( (unsigned)time( NULL ) ); /* Display 10 numbers. */ for( i = 0; i < 10;i++ ) printf( " %6d\n", rand() ); }

TOP

返回列表 回复 发帖