普普通通一个人
发布时间: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.........【阅读全文】
发布时间:2014-02-22 21:58:06
在主函数中交换a、b的值,没有任何问题,问题就出在调用了另个函数,参数传递的过程中,myswap是按照值传递的,prt_myswap是按照地址传递的......【阅读全文】