a亚洲精品_精品国产91乱码一区二区三区_亚洲精品在线免费观看视频_欧美日韩亚洲国产综合_久久久久久久久久久成人_在线区

首頁 > 編程 > C > 正文

C語言循環(huán)結(jié)構(gòu)與時(shí)間函數(shù)用法實(shí)例教程

2020-01-26 15:22:25
字體:
供稿:網(wǎng)友

本文實(shí)例展示了C語言循環(huán)結(jié)構(gòu)與時(shí)間函數(shù)用法,對于C語言的學(xué)習(xí)來說是非常不錯(cuò)的參考借鑒材料。分享給大家供大家參考之用。具體如下:

完整實(shí)例代碼如下:

/************************************************ 《Beginning C 4th Edition》 Notes codes** Created by Goopand** Compiler: gcc 4.7.0***********************************************//* Simon games : memory ability test */#include <stdio.h>       /* for printf(),scanf() function */#include <ctype.h>       /* for tolower() function */#include <stdbool.h>      /* for bool type: true, false */#include <time.h>        /* for time() function */#include <stdlib.h>       /* for rand(),srand() function */int main(void){    char nextGame = 'Y';      /* go ahead for another game */    bool correct = false;      /* guess correctly */    int counter = 0;        /* number of sequences guessed correctly */    int seq_len = 0;        /* length of sequence */    int input_num = 0;       /* stores an input digit */    time_t seed = 0;        /* seed value for random number sequence */    //int i = 0;            /* for loop variable */    clock_t start_clock = 0;    /* record start clock time (not second) */    int time_taken = 0;       /* Time used for game in seconds */    printf("Here is a simon game for training memory ability ./n");    printf("/nThe screen will show a number sequence for 1 second , ");    printf("then the sequence will disappear. You are suggested to "        "input the same sequence to pass the game./n");    printf("/nNotice this: each digit is seperated by a space. /n");    printf("/nNow press Enter to play .. Good luck !/n");    scanf("%c",&nextGame); //Waiting for user's input    do    {        correct = true ;        counter = 0 ;  /* successful tries */        seq_len = 2 ;  /* Initial length of a digit sequence */        time_taken = clock();        while(correct)        {            /* On each third successful try, increase the squence length */            seq_len += (counter++ % 3 == 0);            //if "==" expression is true,returns 1; else returns 0            /* time(NULL) returns number of seconds since 1970-01-01 */            seed = time(NULL);            /* Generate and display a sequence of random numbers */            srand((unsigned int)seed);            //initialize the seed for rand() function            for(int i=0; i<seq_len; i++)                printf("%d ",rand() % 10);                //Output a random digit and a space            /* Wait one second */            start_clock = clock() ;            //returns start clock time,clock() is a timer            for(;clock() - start_clock < CLOCKS_PER_SEC;) ;            //CLOCKS_PER_SEC is a const defined in time.h            /* Now overwrite the digit sequence */            printf("/r");            //control char "/r" : locator back to beginning of the line            for(int i=0; i<seq_len; i++)                printf(" ");                //two spaces to overwrite the sequence            printf("/r");            /* Check wether the input sequence is correct */            srand((unsigned int)seed);   //Restart the random sequence            for(int i=0; i<seq_len; i++)            {                scanf("%d",&input_num); //Read an input number                if(input_num != rand() % 10 )                {                    correct = false ;                    break;                }            }            printf("%s/n",correct ? "Correct !" : "Wrong !");        }        /* Calculate total time to play the game in seconds */        time_taken=(clock() - time_taken) / CLOCKS_PER_SEC ;        /* Output the total game score */        printf("/n/nYour score is %d", --counter * 100 / time_taken);        fflush(stdin); //Empty the input buffer        printf("/nDo you want to play again (y/n)? ");        scanf("%c",&nextGame);    } while(tolower(nextGame) == 'y');    return 0;}

本文實(shí)例源自國外網(wǎng)站,為一個(gè)數(shù)字游戲,感興趣的讀者可以調(diào)試運(yùn)行一下,體會代碼的原理,加深對C語言循環(huán)結(jié)構(gòu)域時(shí)間函數(shù)的認(rèn)識。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 日韩精品一区二区三区四区五区 | jizz在线观看 | 精品国产一区二区三区在线观看 | 国产精品呻吟av | 91干在线观看 | 2021最新热播中文字幕-第1页-看片视频 亚洲第一男人天堂 | 久久伊人久久 | 91高清免费 | 一片毛片| 中文字幕亚洲天堂 | 特黄视频 | 午夜私人影院在线观看 | 欧美一级毛片久久99精品蜜桃 | www.狠狠干| 天天操天天插天天干 | 日本一本视频 | 欧美a∨| 国产免费小视频 | 国产精品久久久久久久久久久久久 | 黄色一级毛片 | 天天摸夜夜摸爽爽狠狠婷婷97 | 青青成人| 天堂资源av | 国产一区二区在线不卡 | 日韩在线精品 | 黄色片毛片 | 羞羞网站在线观看入口免费 | 亚洲成人久久久 | 成人亚洲免费视频 | 成人欧美一区二区三区黑人麻豆 | 国产极品美女在线 | 国产精品69毛片高清亚洲 | 日韩一区二区三区在线观看 | 亚洲毛片在线 | 日韩成人精品在线观看 | 国偷自产视频一区二区久 | 亚洲精品视频国产 | 免费黄色片一区二区 | 久久久久国产 | 日韩一二三区在线观看 | 无码日韩精品一区二区免费 |