Chinaunix首页 | 论坛 | 博客
  • 博客访问: 103408
  • 博文数量: 102
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1011
  • 用 户 组: 普通用户
  • 注册时间: 2014-01-15 13:58
个人简介

普普通通一个人

文章分类

全部博文(102)

文章存档

2018年(1)

2015年(13)

2014年(88)

我的朋友

发布时间:2014-02-24 16:32:25

点击(此处)折叠或打开#include <stdio.h>//计算幂的函数int mypow(int);//计算阶乘的函数float factorial(int);//计算e的函数//e = 1+ x/1! + x(2)/2! + x(3)/3!......int cal.........【阅读全文】

阅读(253) | 评论(0) | 转发(0)

发布时间:2014-02-24 16:06:46

点击(此处)折叠或打开#include <stdio.h>//计算阶乘的函数float factorial(int);//计算e的值//e = 1+ 1/1! + 1/2! + 1/3!......int calculateE(int);int main(){  &.........【阅读全文】

阅读(837) | 评论(0) | 转发(0)

发布时间:2014-02-24 14:51:35

点击(此处)折叠或打开#include <stdio.h>//计算阶乘的函数int factorial(int);int main(){    int x;    char start;    printf.........【阅读全文】

阅读(226) | 评论(0) | 转发(0)

发布时间:2014-02-24 14:35:56

点击(此处)折叠或打开#include <stdio.h>#include <math.h>int main(){    //定义存储三角形三条边的变量    float x, y, z;    //循环标志位.........【阅读全文】

阅读(245) | 评论(0) | 转发(0)

发布时间:2014-02-22 22:48:13

从键盘接收一个5位整数,用该算法将其每位上的数字从小到大重新排列要求是:找到最大的元素,与最后一个元素交换,实现从小到大排列。点击(此处)折叠或打开#include <stdio.h>#include <string.h>//数组大小设置为5#define SIZE 5.........【阅读全文】

阅读(195) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册