首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C语言
#include"stdio.h"
#define N 20
void ModEuler(float(*f)(float,float),float x0,float y0,float xn,int n)
{ int i;
float yp,yc ,x=x0,y=y0,h=(xn-x0)/n;
printf("x[0]=%f\ty[0]=%f\n",x,y);
for(i=1;i<=n;i++)
{
yp=y+h*(*f)(x,y);
x=x0+i*h;
yc=y+h*(*f)(x,yp);
y=(yp+yc)/2;
......................
阅读全部 | yang_guang_v 贴于 2015年1月22日 15:45     hide bbsi
#include"stdio.h"
#define N 20
void ModEuler(float(*f)(float,float),float x0,float y0,float xn,int n)
{ int i;
float yp,yc ,x=x0,y=y0,h=(xn-x0)/n;
printf("x[0]=%f\ty[0]=%f\n",x,y);
for(i=1;i<=n;i++)
{
yp=y+h*(*f)(x,y);
x=x0+i*h;
yc=y+h*(*f)(x,yp);
y=(yp+yc)/2;
......................
阅读全部 | yang_guang_v 贴于 2015年1月22日 15:44     hide bbsi
#include"stdio.h"
#define N 20
void ModEuler(float(*f)(float,float),float x0,float y0,float xn,int n)
{ int i;
float yp,yc ,x=x0,y=y0,h=(xn-x0)/n;
printf("x[0]=%f\ty[0]=%f\n",x,y);
for(i=1;i<=n;i++)
{
yp=y+h*(*f)(x,y);
x=x0+i*h;
yc=y+h*(*f)(x,yp);
y=(yp+yc)/2;
......................
阅读全部 | yang_guang_v 贴于 2015年1月22日 15:44     hide bbsi
#include<stdio.h>
#include<math.h>
void main()
{
int a,b,c;
double t,x1,x2;
t=b*b-4*a*c;
printf("请输入a,b,c的值:");
scanf("%d%d%d",&a,&b,&c);
x1=-b+(sqrt(t))/(2*a);
x2=-b-(sqrt(t))/(2*a);
if(t>0) 
......................
阅读全部 | 等雨说放弃 贴于 2015年1月19日 00:06     hide bbsi
#include<stdio.h>
#include<stdlib.h>
double polynomial(int *p, int n, double x)
{
   int i;
   double m=0;
   for(i=0;i<n;i++)
   {
     m=*(p+i)*x+m;
   }
   printf("%lf",m);
   return 0;
......................
阅读全部 | 诸葛欧阳 贴于 2015年1月10日 11:34     hide bbsi
#include <stdio.h>
#include <time.h>

int datediff(int y1,int m1,int d1,int y2,int m2,int d2)
{
struct tm ptr1;
ptr1.tm_sec=10;
ptr1.tm_min=10;
ptr1.tm_hour=10;
ptr1.tm_mday=d1;
ptr1.tm_mon=m1-1;
ptr1.tm_year=y1-1900;   
......................
阅读全部 | wp231957 贴于 2015年1月9日 09:06     hide bbsi
/*
程序功能:从键盘接收字符串输入,然后以行为单位 转存至文件
         然后从文件中提取所录入的字符串  并有序输出至屏幕
 单个字符长度不能超过255  
 控制台录入以*****(5连*)作为结束标记
 排序算法:冒泡
*/

#include <stdio.h>
#include<stdlib.h>
#include<string.h>

......................
阅读全部 | wp231957 贴于 2015年1月8日 13:07     hide bbsi
#include<stdio.h>
int main()
{

char a[80];
int i;
gets(a);
for(i=0;a[i]!='\0';i++)
{
if(a[i]>='A'&&a[i]<='Z')
continue;
if(a[i]==' '||a[i]==','||a[i]=='.'&&(a[i+1]>='a'&&a[i+1]<='z'))
......................
阅读全部 | 木格子 贴于 2015年1月2日 13:54     hide bbsi
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
/*********图书信息结构体*********/
/***包括登录号,书名,作者名,分类号,出版单位,出版时间,价格等***/
struct bookinf
{
int num; /*******************************************************登录号*/
    char bname[20];/*************************************** 书名*/
    char wname[10];/*************************************** 作者名*/
    char clanum[14];/*************************************** 分类号*/
    char pubcom[10];/*************************************** 出版单位*/
......................
阅读全部 | shisheng0618 贴于 2014年12月29日 16:36     hide bbsi
#include<stdio.h>
#include<string.h>
int main()
{
 char a[10]="12345";
 gets(a);
 strcat(a,"6789");
 printf("%s\n",a+1);
 return 0;
}
阅读全部 | yeah122 贴于 2014年12月27日 16:00     hide bbsi
上一页 107 108 109 110 111 112 113 114 115 116 下一页