- 博客(4)
- 收藏
- 关注
原创 如何将Web of Science中的题录及文章导入NoteExpress?
1.打开Web of Science,输入CAPP,点击标题,然后检索。(本次以某一篇标题关于CAPP的期刊文献为例)2.选中检索结果第4篇期刊。3. 将页面拉至底部,选中保存为其他文件格式。4.选中如图所示内容后点击发送。5. 发送题录至桌面或其它文件夹,并在NoteExpress中导入题录,找到题录的文件。6. 选中更多过滤器,找到Web of Scie...
2018-12-28 10:13:48 38558 1
原创 递归法实现斐波那契求n位的数
#include int fun(int n) { if (n return n; else return fun(n-1) + fun(n-2); } int main() { int n; printf("请输入要输出多少项斐波那契数列:");
2017-12-31 11:22:24 445
原创 冒泡法C语言的实现
产生10个3位的随机整数并从低到高排序:代码如下:#include#include#include#define N 10void bubble(int a[],int n);int main(){int i,a[N];srand((unsigned)time(NULL));printf("数据排序前...\n");for(i=0;iprintf
2017-11-02 22:27:07 342
原创 黄金分割法-C语言
黄金分割法C语言代码实现:#include#include#include#define cs1 0.382#define cs2 0.618int main() //{double fc(double);double lmd[10],miu[10],flmd[10],fmiu[10]
2017-10-24 21:21:32 9409
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人