欧美另类日韩中文色综合,天堂va亚洲va欧美va国产,www.av在线播放,大香视频伊人精品75,奇米777888,欧美日本道免费二区三区,中文字幕亚洲综久久2021

c語言實(shí)現(xiàn)猜數(shù)字小游戲 -電腦資料

電腦資料 時(shí)間:2019-01-01 我要投稿
【m.lotusphilosophies.com - 電腦資料】

   

#include<stdio.h>#include<stdlib.h>#include<time.h>  void fun(int c ){ srand((unsigned)time(NULL)); int ret = rand() % 100 + 1; printf("請輸入一個(gè)數(shù)>");  while (1) {  scanf("%d", &c);  if (c == ret)  {   printf("正確\n");   break;  }  else if (c > ret)  {   printf("猜大了\n");  }  else   {   printf("猜小了\n");  } }} void menu() {  printf("********************\n");  printf("****游戲開始********\n");  printf("********************\n");  printf("*****請選擇*********\n");  printf("********************\n");  printf("****1 游戲開始******\n");  printf("********************\n");   printf("****2 游戲結(jié)束******\n");  printf("********************\n");  printf("********************\n"); }int main(){ int c = 0; int num = 0; int input = 0; while (1) {  menu();  printf("請選擇\n");  scanf("%d", &input);  switch (input)  {  case 1:   printf("游戲開始\n");   fun( num);   break;   {  case 2:   printf("游戲結(jié)束\n");   break;   }  }  //break; } printf("%d", c); system("pause"); return 0;

最新文章