Chinaunix首页 | 论坛 | 博客

发布时间:2014-12-08 10:47:08

/*     题目:       打印从100到1000之间的水仙花数    水仙花数模型:           153=1*1*1+5*5*5+3*3*3     个位:num%10     十位:(num/10.........【阅读全文】

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

发布时间:2014-12-02 16:28:25

第三种方法:#include int main(){ int a,b; a=1; b=9; while(1) {  while(1)  {   printf("%d*%d=%d\t",a,b,a*b);   a++;   if(a>b)   {    printf("\n");.........【阅读全文】

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

发布时间:2014-12-02 16:13:13

第一种方法:#include int main(){ int a,b,c; a=1; b=1; while(1) {  while(1)  {   printf("%d*%d=%d\t",a,b,a*b);   a++;   if(a>b)   {    printf("\n").........【阅读全文】

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

发布时间:2014-12-01 12:00:43

#include <stdio.h>int main(){    float x,y; scanf("%f",&x); if(x<1) {  y=x;  printf("%f\n",y);  return 0; } else if(x>=1  &&  x<10) {  y=2*x-1;  printf("%f\n",y); &nbs.........【阅读全文】

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

发布时间:2014-12-01 11:38:01

#include <stdio.h>#include <math.h>   //定义开方的符号int main(){ int a;       //定义开方的值 int score; scanf("%d",&score);  //选择一个数 if(score<=1000)      //如果这个数小于等于1000 { &nbs.........【阅读全文】

阅读(1146) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

小闹腾2016-07-04 15:06

回复  |  举报

高一生一世姜2014-11-19 21:16

继续努力

回复  |  举报

高一生一世姜2014-11-19 21:15

好 ,真好,太好了。

回复  |  举报
留言热议
请登录后留言。

登录 注册