#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main ()
{
int input=1;
printf ("Welcome to guessing the numbers game \ n");
while (input)
{
printf ("**********************\n");
printf ("******* 1.start ******\n");
printf ("******* 0. Exit ******\n ");
printf ("**********************\n");
printf ("Please select >");
scanf ("%d", &input);
Start playing games
switch (input)
{
Case 1:
{
int n=0;
int ch=0;
Srand ((unsigned int) time (NULL));//Set a seed (time) before the random value is generated
N=rand ()%101;//randomly generates a number between 1-100
while (1)
{
printf ("Please guess One (0-100) direct number \ n");
scanf ("%d", &ch);
if (ch>n)
{
printf ("You guessed it's big");
}
else if (ch<n)
{
printf ("You guessed it's small");
}
Else
{
printf ("Congratulations, guess right \ n");
Break
}
}
Break
}
Default
printf ("Game quit \ n");
Break
}
}
return 0;
}
This article is from the "Sunflower in the Sun" blog, please be sure to keep this source http://10796797.blog.51cto.com/10786797/1706934
C Language applet: Write a word-guessing game