首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
lilylis的代码贴
→
C语言
[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
[C语言]输入字符串,然后按照从小到大输出,大神们帮忙修改一下。。。。
#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
全部(2)
C语言(2)