陌路xiao的ChinaUnix博客
陌路xiao
全部博文(37)
2013年(1)
2012年(36)
shy永久
张美英
远远地注
weichang
afiua
icucston
发布时间:2012-12-10 08:55:50
#include <stdio.h>#include <stdlib.h>#define N 20int a[N];void gen_random(int upper_bound){ int i; for (i = 0; i < N; i++) a[i] = rand() % upper_bound;}void print_random(){ &......【阅读全文】
发布时间:2012-12-10 08:55:44
#include <stdio.h>#include <stdlib.h>#include <time.h>int main(void){ char gesture[3][10] = { "scissor", "stone", "cloth" }; int man, computer, result, ret; srand(time(NULL)); while (1) {&n......【阅读全文】
发布时间:2012-11-29 09:46:13
#define M 50 int max , allocation ,need ,available ; /*定义全局变量*/ int i, j, n, m, r; main......【阅读全文】
登录 注册