首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
#include<stdio.h>
int main(void)
{
   int i,n,n!;
   scanf("%d",&n);
   n!=1;
   for(i=0;i<=n;i++)
   n!=n!*i;
   printf("%d\n",sum);
   return 0;

}
......................
阅读全部 | nickychung 贴于 2013年11月24日 20:46     hide bbsi
import java.io.*;
import java.util.ArrayList;

public class FileCpy {
       private String fileName ;
       public ArrayList<FileCpy>fileList ;
      
       public FileCpy(String name){
            setFileName(name);
      }
       public void setFileName(String name) {
             this.fileName = name;
......................
阅读全部 | 喵喵叫 贴于 2013年11月21日 16:07     hide bbsi
//1、试编写一个求已知单链表的数据域的平均值的函数(数据域数据类型为整
 //型)。 
 #include "stdio.h"
 #include "malloc.h"
 typedef struct node
 {
int data; 
    struct node *link;
 }NODE;

int aver(NODE *head)
 {
......................
阅读全部 | a2316984138 贴于 2013年11月21日 09:20     hide bbsi
//1、试编写一个求已知单链表的数据域的平均值的函数(数据域数据类型为整
 //型)。 
 #include "stdio.h"
 #include "malloc.h"
 typedef struct node
 {
int data; 
    struct node *link;
 }NODE;

int aver(NODE *head)
 {
......................
阅读全部 | a2316984138 贴于 2013年11月21日 09:18     hide bbsi
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS实现的水平动态导航菜单</title>
<style type="text/css">
body {
padding: 0;
margin: 0;
background: #D3D4C0;
font-size: 14px;
font-family: Arial, sans-serif;
text-align: center;
......................
阅读全部 | php2014 贴于 2013年11月17日 14:35     hide bbsi
#include<iostream>
using namespace std;

struct BTNode
{
     int data;     //数据域
BTNode *lchild;//指向左子树的指针
BTNode *rchild;//指向右子树的指针

};

class BinaryTree 
......................
阅读全部 | mirrorslienc 贴于 2013年11月16日 22:22     hide bbsi
#include <stdio.h>
#include <string.h>

int main()
{
    char tmp[100]= {'\0'};
    char* t="T/TOOL_NUM/ MO6";
    char* subt="/TOOL_NUM/";
    char* _subt="02";
    char* newt=strstr(t,subt);
    if(newt==NULL)
    {
......................
阅读全部 | wp231957 贴于 2013年11月13日 14:00     hide bbsi
#include<stdio.h>
#include<stdlib.h>
typedef char ElemType;

typedef struct linknode
{
ElemType data;
struct linknode * next;
int length;
}LiStack;

void InitStack(LiStack *&s);
......................
阅读全部 | ldj34089850 贴于 2013年11月10日 10:08     hide bbsi
#include"stdio.h"
main()
{
    char a[5];
    int i;
    for(i=0; i<5; i++);
    scanf("%c%c%c%c%c",a[i]);
    if(a[i]>='A'&&a[i]<='Z') a[i]=a[i]+32;
    printf("%c%c%c%c%c", a[i]);
    
      }
阅读全部 | c盲 贴于 2013年11月9日 16:35     hide bbsi
// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。
//

#define _CRT_SECURE_NO_WARNINGS     //该死不


#include <stdio.h>
#include <malloc.h>

int main()
{
char* s[200];
......................
阅读全部 | wp231957 贴于 2013年11月6日 20:37     hide bbsi
上一页 239 240 241 242 243 244 245 246 247 248 下一页