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

編寫猜數(shù)字小游戲 -電腦資料

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

   

#include <stdio.h>#include <stdlib.h>#include<time.h>int main(){ int num = 0; srand((unsigned)time(NULL)); int ret = rand() % 100 + 1; while (1) {  printf("請(qǐng)猜數(shù)字:>");  scanf_s("%d",&num);  if (num == ret)  {   printf("猜對(duì)了\n");   break;  }  else if (num > ret)  {   printf("猜大了\n");  }  else  {   printf("猜小了\n");  } }  system("pause");  return 0; }

最新文章