- 博客(5)
- 收藏
- 关注
原创 实例3.4
#include "stdio.h"main(){ int n=1; float sum=0.0; while((float)1/n>=1e-4) { sum=sum+(float)1/n; n=n+2; } printf("sum=%f/n",sum); getch();}
2010-12-02 17:17:00 279 7
原创 若干道100以内两个数的加法冰显示正确率
#include "stdio.h"#include "stdlib.h"#include "time.h"main(){ int op1=0,op2=0,pupil=0,answer=0,right=0,total=0; float rate=0.0; randomize(); do { op1=random(100);
2010-11-19 14:47:00 407
原创 用DO WHILE 1-100的加法
#include "stdio.h"#include "stdlib.h"#include"time.h"main(){ int i=0,sum=0; do { sum=sum+i;i++; } while (i printf("%d/n",sum); getch();}
2010-11-19 14:43:00 821
原创 实例3.4
#include "stdio.h"main(){ int n=1; float sum=0.0; while((float)1/n>=1e-4) { sum=sum+(float)1/n; n=n+2; } printf("sum=%f/n",sum); getch();}
2010-11-19 14:40:00 211
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人