首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴lilylis的代码贴C语言
#include<stdio.h>
#include<stdlib.h>
#include <conio.h>
#include<math.h>
#include<string.h>
#define N 25  //最大表达式长度
#define OP 1   //OP为运算符,值为1
#define NUM 0   //NUM为数字,值为0
#define MAXSIZE 100
typedef char datatype;
typedef struct{
  datatype a[MAXSIZE];
......................
阅读全部 | 2013年4月24日 22:08
#include<string.h>
#define N 3
#define M 20
main()
{
    char str0[N][M],str1[M],*p,*q;
    int i,l,m,n;
    q=str0;
    for(;p<q+N;p++)
    gets(p);
    l=strcmp(q,q+1);                         //string compare
    if(l>0)
......................
阅读全部 | 2012年11月29日 22:00
1
lilylis