普普通通一个人
发布时间:2014-02-27 23:23:07
点击(此处)折叠或打开#include <stdio.h>#include <math.h>double hypotenuse(double, double);int main(){ double x, y; x = 5; &.........【阅读全文】
发布时间:2014-02-26 15:49:34
点击(此处)折叠或打开#include <stdio.h>int main(){ int x, y, z, count = 0; //打印表头 printf("item\tX=\tY=\tZ=\n"); &nb.........【阅读全文】
发布时间:2014-02-26 15:29:55
圆周率公式PI=4-4/3+4/5-4/7+4/9-4/11.... 点击(此处)折叠或打开#include <stdio.h>int main(){ //计数器 int count = 0; //pi用来存.........【阅读全文】