首页 > 代码库 > 华为机试—正整数加减运算式
华为机试—正整数加减运算式
题目:正整数加减运算式
通过键盘输入100以内正整数的加、减运算式,请编写一个程序输出运算结果字符串。
输入字符串的格式为:“操作数1 运算符 操作数2”,“操作数”与“运算符”之间以一个空格隔开。
补充说明:
1. 操作数为正整数,不需要考虑计算结果溢出的情况。
2. 若输入算式格式错误,输出结果为“0”。
要求实现函数:
void arithmetic(const char *pInputStr, long lInputLen, char *pOutputStr);
【输入】 pInputStr: 输入字符串
lInputLen: 输入字符串长度
【输出】 pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
【注意】只需要完成该函数功能算法,中间不需要有任何IO的输入输出
示例
输入:“4 + 7” 输出:“11”
输入:“4 - 7” 输出:“-3”
通过键盘输入100以内正整数的加、减运算式,请编写一个程序输出运算结果字符串。
输入字符串的格式为:“操作数1 运算符 操作数2”,“操作数”与“运算符”之间以一个空格隔开。
补充说明:
1. 操作数为正整数,不需要考虑计算结果溢出的情况。
2. 若输入算式格式错误,输出结果为“0”。
要求实现函数:
void arithmetic(const char *pInputStr, long lInputLen, char *pOutputStr);
【输入】 pInputStr: 输入字符串
lInputLen: 输入字符串长度
【输出】 pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
【注意】只需要完成该函数功能算法,中间不需要有任何IO的输入输出
示例
输入:“4 + 7” 输出:“11”
输入:“4 - 7” 输出:“-3”
输入:“9 ++ 7” 输出:“0” 注:格式错误
#include <iostream> #include <string> using namespace std; #define N 10 void arithmetic(const char *pInputStr, long lInputLen, char *pOutputStr) { char ch; int index1 = 0; int index2 = 0; int index3 = 0; char op1[N]; char op[N]; char op2[N]; int cnt = 0; for(int i = 0; i < lInputLen; i++) { ch = pInputStr[i]; if(ch == ' ') { cnt++; if(cnt > 2) { cout << "空格多余!"<<endl <<endl; return; } continue; } if(cnt == 0) //操作数op1. op1[index1++] = ch; else if(cnt == 1) //操作符. { op[index2++] = ch; if(index2 > 1)//判断类似++的情况. { cout << "格式错误!"<<endl <<endl; return; } } else if(cnt == 2) //操作数op2. { op2[index3++] = ch; } } op1[index1] = op[index2] = op2[index3] = '\0'; int iop1 = atoi(op1); int iop2 = atoi(op2); int temp = 0; if(op[0] == '+') temp = iop1 + iop2; else if(op[0] == '-') temp = iop1 - iop2; cout << temp << endl <<endl; } int main() { // char *pch1 = "4 + 7"; // int len1 = strlen(pch1); // char result1[N]; // arithmetic(pch1,len1,result1); char a[100]; char result[100]; while(gets(a)){ arithmetic(a,strlen(a),result); } cout<<endl; return 0; }
测试结果,可能想的不周全,欢迎查漏补缺:
华为机试—正整数加减运算式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。