3

このStandard C-Free 5.0を使ってストップウォッチのプログラムを作ろうとしています。ここに私がこれまでに持っているものがあります:

#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <windows.h>

char button;
int minutes=0, seconds=0, millisec=0;

int main(void)
{
    while(1)
    {
        reset:
        button = '\0';
        int minutes=0, seconds=0, millisec=0;
        printf("  %d :  %d :  %d ", minutes, seconds, millisec);
        system("cls");
        if(button == 'a')
        {
            while(1)
            {
                cont:
                button = '\0';
                Sleep(10);
                millisec++;
                if(millisec == 100)
                {
                    millisec = 0;
                    seconds++;
                    if(seconds == 60)
                    {
                        seconds = 0;
                        minutes++;
                    }
                }
                printf("  %d :  %d :  %d ", minutes, seconds, millisec);
                system("cls");
                if(button == 's')
                {
                    while(1)
                    {
                        button = '\0';
                        printf("  %d :  %d :  %d ", minutes, seconds, millisec);
                        system("cls");
                        if(button == 'a')
                        {
                            goto cont;
                        }
                        if(button == 'd')
                        {
                            goto reset;
                        }
                    }
                }
            }
        }
    }
}

ボタン「a」を押してストップウォッチを開始しようとしていますが、機能しません。scanf() を使用すると、プログラム全体が一時停止します。ボタンが押されたことを検出してストップウォッチ プログラムを続行する方法はありますか? つまり、プログラムを一時停止せずに、特に「s」を押して停止し、「a」をもう一度押して続行し、タイマーを常に表示します。

4

4 に答える 4

3

これは役立つはず_kbhitであり、その後に使用することが重要_getch()です。

#include <conio.h>

//...

int key;
while (1)
{
    if (_kbhit())
    {
        key = _getch();

        if (key == 'a')
            printf("You pressed 'a'\n");
        else if (key == 'd')
            printf("You pressed 'd'\n");
    }
}
于 2013-03-23T12:26:41.300 に答える
2

を使用しているためsystem("cls");、これはおそらく dos / Windows コマンド プロンプトにあります。conio.hがコンパイラでサポートされているかどうかを確認できます。

そうである場合、kbhit()または_kbhit()(MSDNへのリンク、最も正確な参照については、コンパイラのライブラリのドキュメントを確認する必要があります)を使用する必要があるようです。

于 2013-03-23T12:25:54.870 に答える
0

これは C ではなくシステムの問題です。一般に、ホスティング システムは入力にバッファリングを提供します。そのため、キーを押しても、その時点ではプログラムに配信されず、何らかの条件が発生するまでバッファリングされます (基本的には終了)。ラインが押されます)。

Windows では、キーを押すために行う必要があるさまざまな呼び出しがあります。

Unix では、tty を非標準モードにする必要があります ( および への魔法の呼び出しのセットがありますtcgetattr) tcsetattr

たとえば、それを参照してください

于 2013-03-23T12:24:47.223 に答える
0
#include<stdio.h>
#include<conio.h>
#include<dos.h>
#include<time.h>
#include<windows.h>
main()
{
int choice, h,m,s; h=0; m=0; s=0; //--variable declaration--//
char p= 'p';
printf("Press 1 to start the timer\nPress 2 to exit\n");
printf("\nEnter your choice\n");
scanf("%d",&choice);
switch(choice) //--switch case --//
{
case 1:
{
while(1) //--while condition is true//
{
if(s>59) //--if seconds(s) is > 59--//
{
m=m+1; //--increment minute by 1--//
s=0;
}
if(m>59) //--if minutes(s) is > 59--//
{
h=h+1; //--increment hour by 1--//
m=0;
}
if(h>11) //--if hour(h) is > 11--//
{
h=0; //-Hour to 0--//
m=0;
s=0;
}
Sleep(1000); //--inbuilt function for 1sec delay--//
s=s+1;
system("cls"); //--Clear screen--//
printf("DIGITAL CLOCK");
printf("\n\nHOUR:MINUTE:SECOND");
printf("\n\n%d:%d:%d",h,m,s); //--Print time--//
printf("\n\nTo pause : press P\n");
if(kbhit()) //--Check if any button is pressed on keyboard--//
{
if(p==getch()) //--Check if P is pressed--//
{
system("pause"); //--Inbuilt function for pause and resume--//
}
}
}
break;
}
case 2:
exit(0); //--Exit --//
default:
{
printf("Wrong Choice");
}
}
getch(); //--Holding the screen--//
return 0;
}
于 2016-06-14T13:27:13.737 に答える