作者小头像 Lv.1
更多个人资料
3 成长值
0 关注
2 粉丝
+ 关注 私信

个人介绍

个人公众号:C语言与CPP编程。分享C语言,C++,数据结构,算法,计算机基础,操作系统等相关知识,欢迎关注

感兴趣或擅长的领域

IOT、数据库、编程语言
个人勋章
TA还没获得勋章~
成长雷达
0
3
0
0
0

个人资料

个人介绍

个人公众号:C语言与CPP编程。分享C语言,C++,数据结构,算法,计算机基础,操作系统等相关知识,欢迎关注

感兴趣或擅长的领域

IOT、数据库、编程语言

达成规则

以上满足项可达成此勋章

  • 博客
  • 关注
  • 粉丝
  • 论坛
116.复矩阵乘法
#include "stdio.h"#define MAX 255 void CMatrixMul(ar,ai,br,bi,m,n,k,cr,ci) /*复矩阵相乘*/int m,n,k; /*m是矩阵A的行数,n是矩阵B的行数,k是矩阵B的列数*//*ar,br,cr分别是矩阵A,B,C的实部,ai,bi,ci分别是矩阵A,B, C的...
作者小头像 C语言与CPP编程
153
0
0
2022-05-09 22:49:18
153
0
0
117.求定积分
#include "stdio.h" #include "math.h" double fsimpf(x) /*要进行计算的被积函数*/ double x; { double y; y=log(1.0+x)/(1.0+x*x); return(y); } double fsimp(a,b,eps) /*辛普森算法...
作者小头像 C语言与CPP编程
194
0
0
2022-05-09 22:42:29
194
0
0
118.求满足特异条件的数列
#include<stdio.h>#define NUM 10 /*允许分解的最大元素数量*/int i[NUM]; /*记录分解出的数值的数组*/void main(){ int sum,n,total,k,flag,count=0; clrscr(); puts("**********...
作者小头像 C语言与CPP编程
133
0
0
2022-05-09 22:37:21
133
0
0
120.绘制直线
#include <graphics.h>void main(){ int gdriver=DETECT,gmode; initgraph(&gdriver,&gmode,"c:\\tc"); cleardevice(); line(160,120,480,120); line(480,120,480,360...
作者小头像 C语言与CPP编程
127
0
0
2022-05-09 22:08:07
127
0
0
125.设置线条类型
/* set line style */#include <graphics.h>void main(){ int i,j,c,x=50,y=50,k=1; int gdriver=DETECT,gmode; initgraph(&gdriver,&gmode,"c:\\tc"); cleardevice(...
作者小头像 C语言与CPP编程
133
0
0
2022-05-08 23:42:08
133
0
0
124.设置背景色和前景色
/* set color */ #include <graphics.h> void main() { int cb,cf; int gdriver=DETECT,gmode; initgraph(&gdriver,&gmode,"c:\\tc"); cleardevice(); for(cb=0;...
作者小头像 C语言与CPP编程
130
0
0
2022-05-08 23:55:04
130
0
0
123.绘制椭圆
#include <graphics.h> void main() { int gdriver=DETECT,gmode; initgraph(&gdriver,&gmode,"c:\\tc"); cleardevice(); moveto(160,120); linerel(320,0); li...
作者小头像 C语言与CPP编程
110
0
0
2022-05-09 00:28:46
110
0
0
126.设置填充类型和填充颜色
/* set fill style */ #include <graphics.h> void main() { int i,c=4,x=5,y=6; int gdriver=DETECT,gmode; initgraph(&gdriver,&gmode,"c:\\tc"); cleardevice...
作者小头像 C语言与CPP编程
107
0
0
2022-05-09 00:06:57
107
0
0
129.飘带图案
/* linesin */ #include <graphics.h> #include <math.h> #define PI 3.1415926 void main() { double a; int x1,y1,x2,px=320,py=240; int gdriver=DETECT,gmode; ...
作者小头像 C语言与CPP编程
108
0
0
2022-05-08 22:43:51
108
0
0
131.肾形图案
/* Kidney */ #include <graphics.h> #include <math.h> #define PI 3.1415926 void main() { double a; int x,y,r,r1; int gdriver=9,gmode=2; initgraph(&gdr...
作者小头像 C语言与CPP编程
105
0
0
2022-05-09 00:57:14
105
0
0
总条数:249
  • 1
  • ...
  • 7
  • 8
  • 9
  • ...
  • 25
到第 页

上滑加载中

https://www.baidu.com/s?ie=utf-8&f=3&rsv_bp=0&rsv_idx=1&tn=baidu&wd=sed%20%E6%9B%BF%E6%8D%A2%E5%AD%97%E7%AC%A6%E4%B8%B2&rsv_pq=c7db61a600035dc5&rsv_t=5e19yEsbV9N5fIvdlGRU
作者小头像
作者小头像
快速交付
+ 关注 私信