首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C语言
求解法:     *
                                 ***
                                *****
                               *******
#include<stdio.h>

int main()

{
    int i,j;
    for(i=1;i<=4;i++)
    {
......................
阅读全部 | 直线蜗牛 贴于 2011年12月13日 23:36     hide bbsi
#include "stdio.h"
main()
{int i,k,y;
k=2;
y=1;
for(i=2;i<17;i++)
 {y=y+(k=k*2)/i
 printf("%d",y);
}

#include "stdio.h"
main()
......................
阅读全部 | 离心运动 贴于 2011年12月12日 06:24     hide bbsi
安装VS2010无法打开数据文件,怎么办
阅读全部 | 大蒜2011 贴于 2011年12月10日 07:47     hide bbsi
#include <stdio.h>      
main()
{  
    int i,x,y;                 //定义一副牌,由于没有10这个字符,所以在定义时用字符0代表10
    char card[52][2]={{'3','A'},{'3','2'},{'3','3'},{'3','4'},{'3','5'},{'3','6'},{'3','7'},{'3','8'},{'3','9'},{'3','0'},{'3','J'},{'3','Q'},{'3','K'},
    {'4','A'},{'4','2'},{'4','3'},{'4','4'},{'4','5'},{'4','6'},{'4','7'},{'4','8'},{'4','9'},{'4','0'},{'4','J'},{'4','Q'},{'4','K'},
    {'5','A'},{'5','2'},{'5','3'},{'5','4'},{'5','5'},{'5','6'},{'5','7'},{'5','8'},{'5','9'},{'5','0'},{'5','J'},{'5','Q'},{'5','K'},
    {'6','A'},{'6','2'},{'6','3'},{'6','4'},{'6','5'},{'6','6'},{'6','7'},{'6','8'},{'6','9'},{'6','0'},{'6','J'},{'6','Q'},{'6','K'}},temp[2];     
     
    for(i=0;i<100;i++)      //洗牌
    {          
        x=rand()%52;
......................
阅读全部 | yanzifan 贴于 2011年12月8日 18:31     hide bbsi
#include<stdio.h>
int found(int);
void main()
{
    int number,m=2;
    printf("请输入一个大于4的偶数:");
    scanf("%d",&number);
    for(;m<number;m++)
        if(found(m)==1&&found(number-m)==1)//查找能拆分出来的两个素数
            break;
    printf("%d=%d+%d\n",number,m,number-m);
}
......................
阅读全部 | 汪苏哲 贴于 2011年12月8日 07:17     hide bbsi
#include <stdio.h>
#include <bios.h>
#include <ctype.h>
#include <conio.h>
#include <dos.h>
#define CROSSRU     0xbf 
#define CROSSLU     0xda
#define CROSSLD     0xc0 
#define CROSSRD     0xd9
#define CROSSL      0xc3
#define CROSSR      0xb4
#define CROSSU      0xc2
......................
阅读全部 | 笑了丶 贴于 2011年12月8日 03:46     hide bbsi
// xujianfeng.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include "assert.h"
#include "memory.h"
typedef struct word
{char cnword[18];
char enword[128];
......................
阅读全部 | dictionary 贴于 2011年12月5日 03:55     hide bbsi
// xujianfeng.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include "assert.h"
#include "memory.h"
typedef struct word
{char cnword[18];
char enword[128];
......................
阅读全部 | dictionary 贴于 2011年12月5日 03:53     hide bbsi
#include<stdio.h>
#include<string.h>
int main()
{
    char c[6][50];
    char *p,*r;
    int i;
    r=c[5];
    for(i=0; i<5; i++)
        gets(c[i]);
    for(i=0; i<4; i++)
    {
......................
阅读全部 | Bearox 贴于 2011年11月30日 06:39     hide bbsi
请问高手下面程序哪里错。 struct stu { char name[10]
阅读全部 | cjp206 贴于 2011年11月29日 07:06     hide bbsi
上一页 162 163 164 165 166 167 168 169 170 171 下一页