首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C语言
//list.h
#ifndef LIST_H_
#define LIST_H_

#include <stdlib.h>

/* Define a structure for linked list elements. */
typedef struct ListElmt_
{
void *data;
struct ListElmt_ *next;
}ListElmt;
......................
阅读全部 | fdjiangwu 贴于 2014年11月19日 20:00     hide bbsi
#include <stdio.h>
#include "算法排序.cpp"

void main ()
{
SqList L;
InitList_L (L);
int n,i;
printf ("输入待排序记录的个数n: ");
scanf ("%d",&n);
for (i=1;i<=n;i++)
{
......................
阅读全部 | 薛玉敏 贴于 2014年11月13日 21:24     hide bbsi
main()
{
int a, b, c, d, e, f, g;
  v:printf("请输入年月日:\n");
scanf("%d %d %d", &a, &b, &c);
f = a;e=0;
a = (a % 4 == 0) ? 1 : 0;
for (d = 1; d < b; d++)
switch (d)
{
case 1:
case 3:
......................
阅读全部 | espier 贴于 2014年11月13日 09:40     hide bbsi
main()
{
float a, b;
int c, d;
  a:printf("零+回车求和\n请输入数字:\n");
      scanf("%f", &a);
b = a + b;
      if (a == 0)
          goto b;
else
d += 1;
          goto a;
......................
阅读全部 | espier 贴于 2014年11月12日 18:52     hide bbsi
/*引用"air5116"改写计算器c4droid*/
#include "stdio.h"
#include "math.h"
void main()
{
      v:    printf
("                       *********************\n");
        printf
("                       **     1.加法运算     **\n");
        printf
("                       **     2.减法运算     **\n");
        printf
......................
阅读全部 | espier 贴于 2014年11月12日 18:45     hide bbsi
// 1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include<iostream>
int main(int argc, char* argv[])
{
int i,j,k;
    float a[3][4][5],submax[j],submin[j],subz,subave; //3个班级 4个科目 5个学生

for(i=0;i<=2;i++)
{
......................
阅读全部 | naughty14 贴于 2014年11月9日 11:34     hide bbsi
#include <stdio.h>
#include <string.h>
#define maxn 20
int a[maxn][maxn]; 
int main(int argc, char *argv[])
{
int n,x,y,tot=0;
scanf("%d",&n);
memset(a,0,sizeof(a));
tot=a[x=0][y=n-1]=1;
while(tot<n*n)
{
......................
阅读全部 | neo1218 贴于 2014年11月7日 17:57     hide bbsi
#include<stdio.h>
#include<malloc.h>
#define LEN sizeof(struct Student)

void main()
struct Student                //结构体声明
{
long num;
int score;
struct Student* next;
};
int n;
阅读全部 | dzhack 贴于 2014年11月6日 15:13     hide bbsi
#include<stdio.h>
#include<malloc.h>
#define LEN sizeof(struct Student)

void main()
struct Student                //结构体声明
{
long num;
int score;
struct Student* next;
};
int n;
阅读全部 | dzhack 贴于 2014年11月6日 15:13     hide bbsi
#include<stdio.h>
#include<string.h>
int count_chars(char const*str,char const*chars)
{
int a=strlen(str);
int b=strlen(chars);
printf("%d   %d\n",a,b);
int i,j;
int count=0;
for(i=0;i<b;i++,chars++)
for(j=0;j<a;j++,str++)
if(*str==*chars)
......................
阅读全部 | 徐学贵 贴于 2014年11月4日 22:56     hide bbsi
上一页 111 112 113 114 115 116 117 118 119 120 下一页