求设计一个C语言小程序,并标注下功能 10
3个回答
展开全部
//多线程实现随机数程序,回车停止/运行
#include <stdio.h>
#include <ctime>
#include <process.h>
#include <graphics.h>
bool g_run = true; //定义变量g_run,控制随机数是否运行
void userInput(void*) //监视输入的线程函数
{
while (true)
{
if (getchar()=='\n') //是否输入回车
g_run = !g_run; //回车运行 回车暂停
}
}
void main()
{
srand(time(0)); //随机数种子
_beginthread(userInput,0,NULL); //开线程
while (true)
{
if (g_run)
{
int t = rand() % 30+ 1;//1-30的随机数
printf("%d\t",t); //输出
}
Sleep(50); //延迟50毫秒
}
}
#include <stdio.h>
#include <ctime>
#include <process.h>
#include <graphics.h>
bool g_run = true; //定义变量g_run,控制随机数是否运行
void userInput(void*) //监视输入的线程函数
{
while (true)
{
if (getchar()=='\n') //是否输入回车
g_run = !g_run; //回车运行 回车暂停
}
}
void main()
{
srand(time(0)); //随机数种子
_beginthread(userInput,0,NULL); //开线程
while (true)
{
if (g_run)
{
int t = rand() % 30+ 1;//1-30的随机数
printf("%d\t",t); //输出
}
Sleep(50); //延迟50毫秒
}
}
追问
这个VC下运行不起 graphics.h
追答
去掉graphics.h,这个程序用不到,在调一下多线程运行方式,在setting->分类下拉列表选择Code Generation,这页的USE run-time中选择Mul```ed就可以运行了。记得给分啊,这个程序很优秀的!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
求1+2!+3!+...+20!的和
#include "stdio.h"
#include "conio.h"
main()
{
float n,s=0,t=1;
for(n=1;n<=20;n++)
{
t*=n;
s+=t;
}
printf("1+2!+3!...+20!=%e\n",s);
getch();
}
#include "stdio.h"
#include "conio.h"
main()
{
float n,s=0,t=1;
for(n=1;n<=20;n++)
{
t*=n;
s+=t;
}
printf("1+2!+3!...+20!=%e\n",s);
getch();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
求键盘输入的两个数之和
#include<stdio.h>
void main()
{
int a,b,c;
printf("请输入两个整数:");
printf("\n");
scanf("%d%d",&a,&b);
c= a+b;
printf("%d",c);
}
#include<stdio.h>
void main()
{
int a,b,c;
printf("请输入两个整数:");
printf("\n");
scanf("%d%d",&a,&b);
c= a+b;
printf("%d",c);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询