- 博客(2)
- 收藏
- 关注
原创 c语言计算坐标两点之间的距离
#include<studio.h> #include<math.h> diuble dist(int x1,int x2,int y1,int y2) { int a,b; double c; a=x2-x1; b=y2-y1; c=sqrt(aa+bb); return c; } int main () { int x1,y1,x2,y2; double c; scan...
2020-03-08 23:08:18
5998
原创 c语言程序 九九乘法表
#include<studio.h> int main() { int n,m; for(n=1;n<10;n++) for(m=1;m<=n;m++) printf (“%2d*%d=%d”,n*m) return 0; }
2020-03-07 23:05:17
264
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人