#include <stdio.h>
int a,b,result,chance;
int main()
{
void judge(int result,int chance);
int add(int a ,int b);
printf("请输入两个整数:");
scanf("%d%d",&a,&b);
chance=0;
do
{
result=add(a,b);
......................
阅读全部
|
a13513909244
贴于 2018年11月24日 20:00
hide
bbsi
Loaded 'APP01.EXE', no matching symbolic information found.
Loaded 'C:\Windows\SysWOW64\kernel32.dll', no matching symbolic information found.
Loaded 'C:\Windows\SysWOW64\KernelBase.dll', no matching symbolic information found.
The thread 0x744 has exited with code 21 (0x15).
The program 'F:\C程序练习\Debug\nn.exe' has exited with code 21 (0x15).
C语言单步调试出现上面错误,一闪就消失
Windows10系统 VCC+6.0
谢谢大家
阅读全部
|
格格呀
贴于 2018年11月20日 17:26
hide
bbsi
#include<stdio.h>
int a[20][100005];
int main()
{
int T,i,j=0,x[20],y[20],p=0,sum=0,summax[20];
int N[20];
scanf("%d",&T);
for(j=0;j<T;j++)
{ sum=0;
scanf("%d",&N[j]);
for(i=0;i<N[j];i++)
scanf("%d",&a[j][i]);
......................
阅读全部
|
liuyaxing
贴于 2018年11月20日 16:50
hide
bbsi
While((ch=getchar())=='e')
printf(" *" );
//怎么运算的?
阅读全部
|
闲人和尚
贴于 2018年11月13日 22:12
hide
bbsi
求n个数的平均数和标准差。给定n个数X1 ,X2 ,X3 ......Xn ,数据的平均数为x,标准差定义如下:
图 1:
输入
第一行一个正整数T,表示有T组测试数据。以下每行是一组数,第一个数为数据个数m(m<200),然后是m个正整数构成,
输出
对于每组数据输出一行,即平均数和标准差,两个数据均保留3位小数,并且以一个空格隔开。
输入样列
2
......................
阅读全部
|
qiujiao
贴于 2018年11月10日 22:32
hide
bbsi
// rr.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<stdio.h>
int sum1(int n)
{
if(n==1)return 1;
return sum1(n-1)*n;
}
int sum2(int n)
......................
阅读全部
|
Mror
贴于 2018年11月5日 22:33
hide
bbsi
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
float rabbit;
float tortoise;
void *runner_rabbit(void *param);
void *runner_tortoise(void *param);
int main(int argc, char *argv[])
{
srand(time(NULL));
......................
阅读全部
|
mimijilu
贴于 2018年11月1日 14:27
show
bbsi
#include <stdio.h>
main()
{
float height,faHeight,moHeight;
char sex,sports,diet;
printf("请输入被测人信息:性别,是否喜爱运动,是否饮食良好:");
scanf("%f,%f,%f,%c,%c,%c",&height,&faHeight,&moHeight,&sex,&sports,&diet);
if(sex=='F' && sports=='Y' && diet=='Y')
{
height=((faHeight*0.923+moHeight)/2)*(1+0.02+0.015);
printf("%f",height);
}
......................
阅读全部
|
周啦啦
贴于 2018年10月31日 19:25
hide
bbsi