普普通通一个人
发布时间: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.........【阅读全文】
发布时间: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(){ &.........【阅读全文】
发布时间:2014-02-24 14:35:56
点击(此处)折叠或打开#include <stdio.h>#include <math.h>int main(){ //定义存储三角形三条边的变量 float x, y, z; //循环标志位.........【阅读全文】
发布时间:2014-02-22 22:48:13
从键盘接收一个5位整数,用该算法将其每位上的数字从小到大重新排列要求是:找到最大的元素,与最后一个元素交换,实现从小到大排列。点击(此处)折叠或打开#include <stdio.h>#include <string.h>//数组大小设置为5#define SIZE 5.........【阅读全文】