c语言随机类型问题
想要制作一个和电脑玩石头剪刀布的随机游戏。运行后:Let’s play geme!
石头剪刀布…石头(0) 剪刀(1) 布(2)
The number is:4
Please select a number between 0 and 2
The number is:2
You : 布
I: 剪刀
You lose!
You wanna play one more time? Yes(1) or No(0)
The number is:1
石头剪刀布…石头(0) 剪刀(1) 布(2)
The number is:0
You :石头
I:剪刀
You win!
You wanna play one more time? Yes(1) or No(0)
The number is:1
石头剪刀布…石头(0) 剪刀(1) 布(2)
The number is:2
You:布
I:布
Even!
You wanna play one more time? Yes(1) or No(0)
The number is:3
Input 0 or 1.
The number is:0
Good bye
老师什么都没说就让我们做了,好像要用到下列代码,但我不知道放哪里和怎么用:
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main(void){
int a;
srand(time(NULL));
a=rand()%5;
}
麻烦老手解答!谢谢!