会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
YoUnGeR_MaN
博客园
首页
新随笔
联系
订阅
管理
2019年11月
给自己定下一个计划
摘要: 每天至少要写上一道题并且详细的表示出来 每天不要颓废啊 希望每天都能过得开心
阅读全文
posted @ 2019-11-12 21:18 YoUnGeR_MaN
阅读(106)
评论(0)
推荐(0)
2019年10月
cpp 10.7
摘要: #include <stdio.h>void copy_ptr(double target[][4],double source[][4],int n){ double (*p1)[4]=target,(*p2)[4]=source; for(int i=0;i<12;i++) { **p1=**p
阅读全文
posted @ 2019-10-08 17:35 YoUnGeR_MaN
阅读(89)
评论(0)
推荐(0)
CPP 10.1
摘要: #include <stdio.h>void copy_arr(double target[],double source[],int n){ for(int i=0;i<n;i++) { target[i]=source[i]; }}void copy_ptr(double target[],do
阅读全文
posted @ 2019-10-08 17:02 YoUnGeR_MaN
阅读(81)
评论(0)
推荐(0)
公告