首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C语言
根据下面给出的求根公式,计算并输出一元二次方程的两个实根,要求精确到小数点后4位。程序中所有浮点数的数据类型均为float.



提示:
1. 计算平方根的数学函数为sqrt()。
2. 使用数学函数,需要在程序开头加上编译预处理指令 #include <math.h>

以下为程序运行结果示例
x1=-0.5000
x2=-1.0000

......................
阅读全部 | xt1827921096 贴于 2018年3月24日 19:47     hide bbsi
根据下面给出的求根公式,计算并输出一元二次方程的两个实根,要求精确到小数点后4位。程序中所有浮点数的数据类型均为float.



提示:
1. 计算平方根的数学函数为sqrt()。
2. 使用数学函数,需要在程序开头加上编译预处理指令 #include <math.h>

以下为程序运行结果示例
x1=-0.5000
x2=-1.0000

......................
阅读全部 | xt1827921096 贴于 2018年3月24日 19:45     hide bbsi
#include <stdio.h>
#include <math.h>

int main(void)
{
float x0, x1, x2, y0, y1, y2;

do
{
printf("Please input x1, x2: ");
scanf("%f,%f", &x1, &x2);
y1 = x1 * x1 * x1 - 3 * x1 * x1 + x1 + 1 = 0;
......................
阅读全部 | LovelyFellas 贴于 2018年3月20日 09:59     hide bbsi
#include<stdio.h>
#define maxsize 100
typedef struct{
int num;
float score;
}stu;
typedef stu datatype;
typedef struct{
datatype data[maxsize];
int length;
}seqlist;
void creatlist(seqlist *l)
......................
阅读全部 | 艺雯 贴于 2018年3月18日 11:33     hide bbsi
#include
阅读全部 | somanymm 贴于 2018年3月9日 22:19     hide bbsi
# include <stdio.h>
void main()
{
int x,y,m;
printf("input two integers:");
scanf_s("%d%d",&x,&y);
m=(x>y)?x:y;
printf("max=%d\n",m);
}
阅读全部 | 亚立山大西洋 贴于 2018年3月9日 21:32     hide bbsi
//#include "header.h"?? //Anycodes includes the head file by default, needn't cancle the notation.
#include <stdio.h>
#include <stdlib.h>
int main()
{
int max(int x,int y);
int a,b,c,e,f;
scanf("%d,%d,%d",&a,&b,&c);
e=max(a,b);
f=max(e,c);
printf("max=%d\n",f);
return 0;
......................
阅读全部 | Ruiniou 贴于 2018年3月9日 21:32     hide bbsi
#include <stdio.h>
#include <stdlib.h>
#include <string.h> 
#define MAX 10
int main()
{
     char str[MAX];
 int i=0;
 int count=6;
 int strIndxe=-1;         //记录要删除该数字的下标 
 char Seachstr[MAX];
 printf("请输入6个字符:");
......................
阅读全部 | CAT119 贴于 2018年2月21日 00:45     hide bbsi
# include <stdio.h>
# include <math.h>

int main (void)
{
int a =1;
int b =5;
int c =6;
double delta;
double x1;
double x2;

......................
阅读全部 | william2011 贴于 2018年2月1日 13:05     hide bbsi
# include <stdio.h>
# include <math.h>

int main (void)
{
int a =1;
int b =5;
int c =6;
double delta;
double x1;
double x2;

......................
阅读全部 | 诗情 贴于 2018年1月28日 21:56     hide bbsi
上一页 62 63 64 65 66 67 68 69 70 71 下一页