求个c语言小代码,很简单的倒计时程序

求个c语言小代码,很简单的倒计时程序,第1张

//有很多种方法,我这里用的是其中一种:

#include

#include

int main(void) {

int minutes;

printf("请输入分钟数:\n");

scanf("minutes");

for (; minutes >= 0; --minutes) {

for (int i = 60; i >= 0; --i) {

printf("还剩 %d 分钟 %d 秒 结束\n", minutes, i);//输出剩余时间

sleep(1000);//延时函数延时一秒

};

};

printf("计时结束\n");

system("pause");

return 0;

};

//我没上编译器测试,但是具体架构就是这样

#include<stdioh>

#include<stdlibh>

#include<stringh>

void

main()

{

int

a,b,d,f;

char

c[4],e[5]="EXIT";

while(true)

{printf("BEGIN(开始)EXIT(退出):");

scanf("%s",c);

while(strcmp(c,e)!=0)

{printf("请输入a和b:");

scanf("%d

%d",&a,&b);

d=a+b;

printf("%d\n",d);

printf("是否继续[1是;0否]:");

scanf("%d",&f);

if(f==0)

break;

else

continue;

}

if(strcmp(c,e)==0)

printf("结束\n");

printf("按回车返回开头");

fflush(stdin);

getchar();

system("cls");

}

}

你题意不是太明确,我随意编了一个不知道是不是你想要的。

分类: 电脑/网络 >> 程序设计 >> 其他编程语言

问题描述:

小弟不才

Problem description

We just test the input and output system in your selected language

Input

The Input will contain only o integers a,b

Output

The Ouput should contains the result of a + b No other whitespace contians at begin or end of the output Notice : empty line is allowed

Sample Input

10 20

Sample Output

30

代码最短57B就可以做到

谢谢大家

解析:

太简单了,题目意思是:输入两个整数,输出它们的和。输出结果的前后都不允许有空格,但可以有空行。

#include <stdioh>

void main()

{int a,b;

scanf("%d%d",&a,&b);

printf("%d\n",a+b);

}

以上就是关于求个c语言小代码,很简单的倒计时程序全部的内容,包括:求个c语言小代码,很简单的倒计时程序、求 一个超简单的C语言程序代码、几乎最简单的C语言程序(需要一点E文知识)等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10206732.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-06
下一篇 2023-05-06

发表评论

登录后才能评论

评论列表(0条)

保存