首页
社区
课程
招聘
[旧帖] [讨论]DEV C++中初学者编程 共同学习者顶起来 0.00雪花
发表于: 2010-5-22 17:40 74308

[旧帖] [讨论]DEV C++中初学者编程 共同学习者顶起来 0.00雪花

2010-5-22 17:40
74308
收藏
免费 0
支持
分享
最新回复 (280)
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
176
所有的 会的59591715659780558

3489
2011-3-16 13:15
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
177
#include"stdio.h"
#include"mach.h"

main()
{
      int a,b,c,t;
scanf("%d%d%d",&a,&b,&c);
if(a>b)
t=a,a=b,t=b;
  if(c>a)
  t=a,a=c,c=t;
   if(c>b)
   t=b,b=c,c=t;
printf("%d,%d,%d",a,b,c);
getchar();
}
2011-3-16 13:26
0
雪    币: 30
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
178
/*P87  12T */
     /*
#include "stdio.h"
#include "math.h"
main()   
{    int i=1,j=2,k=3;
     if(i++==1&&(++j==3||k++==3))
     printf("%d%d%d\n",i,j,k);
     getchar();
}*/
/*P87   13T*/  
/*
#include "stdio.h"
#include "math.h"
main()   
{    int a=3,b=4,c=5,d=2;
     if(a>b)
            if(b>c)
            printf("%d",d++ +1);
            else
            printf("%d",++d +1);
      printf("%d",d);
      getchar();
}*/
/*P88  16T*/
/*
#include "stdio.h"
#include "math.h"
main()   
{     char k;
      int i;
      for(i=1;i<3;i++)
      {
          scanf("%c",&k);
          switch(k)
          {
                   case '0': printf("another\n");
                   case '1': printf("number\n");
          }
      }
fflush(stdin);
getchar();
} */  输出的答案与讲的不同啊
2011-3-16 13:28
0
雪    币: 21
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
179
首先用辗转求余法求出两数最大公约数,最小公倍数=(第一个数)*(第二个数)/(最大公约数)

int gcd(int a, int b)//辗转求余
{
while(b != 0)
{
   int t = a;
   a = b;
   b = t % b;
}
return a;

}
2011-3-16 13:29
0
雪    币: 30
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
180
往上面看下
2011-3-17 12:22
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
181
#include"stdio.h"
main()
{int n=0,m=1,x=2;
if(!n) x-=1;
if(m) x-=2;
if(x) x-=3;
printf("%d\n",x);
    getchar();
}
2011-3-17 13:30
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
182
#include"stdio.h"
main()
{char  k;int i;
       for(i=1;i<3;i++)
       {scanf("%c",&k);
       switch(k)
       {case'0':printf("another\n");
       case'1':printf("unmber\n");
       getchar();
       fflush(stdin);
       }
       }
       }
2011-3-17 13:31
0
雪    币: 30
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
183
#include "stdio.h"
#include "math.h"

main()
{
      int a,b,c,t;
scanf("%d,%d,%d",&a,&b,&c);
if(a>b)
t=a,a=b,t=b;
  if(b>c)
  t=b,b=c,c=t;
   if(a>b)
   t=a,a=b,t=b;
printf("%d,%d,%d",a,b,c);
fflush(stdin);
getchar();
}
2011-3-21 16:22
0
雪    币: 30
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
184
#include "stdio.h"
#include "math.h"
main()
{
      int y=10;
      while(y--);/*这里循环的是空语句*/  /*y++是先运行在变值*/
      printf("y=%d\n",y);
      getchar();
      }
2011-3-23 12:26
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
185

  main()
{int s,i;
s=0,i=1;
do{
s=s+i;
i++;
  }
while(i<=100)
printf("%d",s);
}
2011-3-23 13:32
0
雪    币: 40
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
186
顶....有问题一定来这里问
2011-3-23 13:35
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
187
哎呀,月来月兰了,我哈哈
2011-3-29 12:27
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
188
#include "stdio.h"
main()
{  int x,y,i;
     {for(x=1;x<=9;x++)
      {
     for(y=1;y<=9;y++)
       printf("%d x %d = %d",x y i )
      }
      printf("\n")
    }
    getcher();  
}
2011-3-29 13:26
0
雪    币: 777
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
189
这个挺好玩的。
2011-3-29 18:19
0
雪    币: 46
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
190
一起来多练习~~
2011-3-29 19:02
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
191
数学与C语言的完美结合 ,这就是秘密
2011-3-30 13:17
0
雪    币: 30
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
192
#include <stdio.h>
main()
{
int cocks=0,hens,chicks;
while(cocks<=20)
{
hens=0;
while(hens<=33)
{
chicks=100-cocks-hens;
if(5.0*cocks+3.0*hens+chicks/3.0==100.0)
printf("公鸡%d只,母鸡%d只,小鸡%d只\n\n",cocks,hens,chicks);
hens++;
}
cocks++;
}
getchar();
}
2011-3-30 13:18
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
193

  main()
{
inti,j;
for(i=0;i<10;i++)
{
j=i*10+6;
if(j%3)continue
printf("%d",j);
}
}
2011-3-30 13:21
0
雪    币: 30
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
194
#include "stdio.h"
#include "conio.h"

int main()
{
   int male;
   int female;
   int baby;

   for(male=0;male<100/5;male++)
      for(female=0;female<100/3;female++)
         for(baby=0;baby<100;baby+=3)
         {
            if(male+female+baby == 100 && 5*male+3*female+baby/3 == 100)
            printf(" cock   hen   baby\n  %d    %d    %d",male,female,baby)
         }
   printf("Hello, world\n");
   getch();
}
2011-3-30 13:22
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
195

  数学也差,英语也差!!!
    所以~~~~~~~~~~~~~
             学得好痛苦
2011-3-30 13:25
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
196
:3
#include<stdio.h>
main()
{
int i,j,s=0;
for(i=0;i<50;i++)
    {
    j=i*2+1;
    s=j+s;
    printf("%d\n",s);
    }
    getchar();
}:
2011-4-6 13:04
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
197
#include<stdio.h>
main()
{
      int a,b;
      for (a=1;a<100;a++)
      {
          for(a%2)continue
          printf("%d"a)
          }
      }
2011-4-6 13:07
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
198
了解一下用C++编外挂的 方法 ?
知道或了解的回下
顺便 顶一下
2011-4-7 12:15
0
雪    币: 30
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
199
#include "stdio.h"
main()
{
      int i,j,n;
      printf("\nPlease Enter n:");
      scanf("%d",&n);
      for(i=1;i<=n;i++)
      {for(j=1;j<=n+i-1;j++)
      if(j>n-i) printf("*");
      else  printf(" ");
      printf("\n");
      }
      for(i=1;i<n;i++)
      {for(j=1;j<2*n-i-1;j++)
      if (j>i) printf("*");
      else printf(" ");
      printf("\n");
      fflush(stdin);
      getchar();
      }
      }

P112的5-5
2011-4-7 12:18
0
雪    币: 31
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
200
这个我能看懂。这么多天了  就只有这个可以看懂,其他的都看的云里雾里的。
2011-4-7 15:27
0
游客
登录 | 注册 方可回帖
返回
//