我继续学习C编程,今天遇到了一个问题。在我的程序中,用户必须输入一个以分钟为单位的时间值,我的程序将计算它的秒数(实际上非常简单)。但我想定一个规则,那个时间不能是负数。所以我使用了这段代码:
if(a<=0)
{
printf("Time cannot be equal to, or smaller than zero, so the program will now terminate\n");
exit(EXIT_FAILURE);
}
但是现在,我不想终止我的程序,我希望它返回到用户必须输入值时的状态。
我在终止我的程序时遇到了问题,但是一些搜索帮助了我,但是我没有得到任何搜索如何重新启动我的程序的结果。
这是我的程序的文本(我在 Linux 上工作):
#include<stdio.h>
#include<stdlib.h>
main()
{
float a;
printf("\E[36m");
printf("This program will convert minutes to seconds");
getchar();
printf("Now enter your time in minutes(e.g. 5):");
scanf("%f", &a);
printf("As soon as you will press the Enter button you`ll get your time in seconds\n");
getchar();
getchar();
if(a<=0)
{
printf("Time cannot be equal to, or smaller than zero, so the program will now terminate\n");
printf("\E[0m");
exit(EXIT_FAILURE);
}
else
{
float b;
b=a*60;
printf("\E[36m");
printf("The result is %f seconds\n", b);
printf("Press Enter to finish\n");
getchar();
}
printf("\E[0m");
}
PS我不知道如何正确命名这个函数,所以我称之为restart,也许它有不同的名字?