for循环题目

输出内容:*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ #include "stdio.h"main(){ int i,j;for(i=0;i<5;i++){ for(j=5;j>i;j--) printf("*+"); printf("\n");}getch();}
2009-07-10 06:55 | 阅读 2711 次 | 评论 0 条

在口袋中放有手感相同的3只红球、4只白球。随机地从口袋中摸出3只球来,然后放回口

#include<stdio.h>#include<time.h>main(){int h,b,k,i;h=0;b=0;for (i=0;i<500;i++){ k=rand()%7+1; if(k<=3) h++; else b++; } printf("hongqiuyou%d\n",h); printf("baiqiuyou%d\n",b); getch();}
2009-07-10 06:55 | 阅读 2589 次 | 评论 0 条

c 用递归写一个10进制换2进制的程序

#include "stdio.h"int xxx(int b){int x=b%2,y=b/2;if(b!=0){ x=x+xxx(y)*10; return x;}}main(){int a,c;scanf("%d",&amp;c);a=xxx(c);printf("%d",a);getch();}
2009-07-10 06:52 | 阅读 2583 次 | 评论 0 条

DMS
浏览22291次
文章归档