软第二次作业熟悉工具
软工第二次作业
熟悉使用工具
GIT地址 | https://github.com/Corvvus
- |-
GIT用户名| Corvvus
学号后五位 |61426
博客地址| https://www.cnblogs.com/zhangzhuoxin/
作业链接| https://www.cnblogs.com/harry240/p/11515697.html
配置过程
1.下载vs2017
下载了c++的配置环境
2.下载git
3.把阿超的库保存到自己的库中
4.在一个文件目录下git bush,把库中的文件保存到自己的本地
5.将原来的Java文件转化为cpp文件
6.把头文件和源代码拷贝到vs中
代码
头文件
#pragma once
#include "stdlib.h"
#include <stack>
#include <vector>
#include <iostream>
#include "stdlib.h"
#include <ctime>
#include <string>
#include "../Calculator/calculator.h"
using namespace std;
class Calculator {
private:
string op[4] = { "+", "-", "*", "/" };
public:
Calculator();
string MakeFormula();
string Solve(string formula);
};
源代码
// ConsoleApplication1.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include "pch.h"
#include <iostream>
#include <stdlib.h>
#include <stack>
#include <vector>
#include <iostream>
#include "stdlib.h"
#include <ctime>
#include <string>
#include "Calculator.h"
#define random(a,b) (rand()%(b-a+1)+a)
using namespace std;
Calculator::Calculator() {}
string Calculator::MakeFormula() {
string formula = "";
//srand((unsigned int)time(NULL));
int count = random(1, 3);
int start = 0;
int number1 = random(1, 100);
formula += to_string(number1);
while (start <= count) {
int operation = random(0, 3);
int number2 = random(1, 100);
formula += op[operation] + to_string(number2);
start++;
}
return formula;
};
string Calculator::Solve(string formula) {
vector<string>* tempStack = new vector<string>();
stack<char>* operatorStack = new stack<char>();
int len = formula.length();
int k = 0;
for (int j = -1; j < len - 1; j++) {
char formulaChar = formula[j + 1];
if (j == len - 2 || formulaChar == '+' || formulaChar == '-' ||
formulaChar == '*' || formulaChar == '/') {
if (j == len - 2) {
tempStack->push_back(formula.substr(k));
}
else {
if (k < j) {
tempStack->push_back(formula.substr(k, j + 1));
}
if (operatorStack->empty()) {
operatorStack->push(formulaChar);
}
else {
char stackChar = operatorStack->top();
if ((stackChar == '+' || stackChar == '-')
&& (formulaChar == '*' || formulaChar == '/')) {
operatorStack->push(formulaChar);
}
else {
tempStack->push_back(to_string(operatorStack->top()));
operatorStack->pop();
operatorStack->push(formulaChar);
}
}
}
k = j + 2;
}
}
while (!operatorStack->empty()) {
tempStack->push_back(string(1, operatorStack->top()));
operatorStack->pop();
}
stack<string>* calcStack = new stack<string>();
for (int i = 0; i < tempStack->size(); i++) {
string peekChar = tempStack->at(i);
if (peekChar != "+" && peekChar != "-"
&& peekChar != "/" && peekChar != "*") {
calcStack->push(peekChar);
}
else {
int a1 = 0;
int b1 = 0;
if (!calcStack->empty()) {
b1 = stoi(calcStack->top());
calcStack->pop();
}
if (!calcStack->empty()) {
a1 = stoi(calcStack->top());
calcStack->pop();
}
if (peekChar == "+") {
calcStack->push(to_string(a1 + b1));
}
else if (peekChar == "-") {
calcStack->push(to_string(a1 - b1));
}
else if (peekChar == "*") {
calcStack->push(to_string(a1 * b1));
}
else if (peekChar == "/") {
calcStack->push(to_string(a1 / b1));
}
}
}
return formula + "=" + calcStack->top();
}
int main()
{
srand((unsigned int)time(NULL));
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
Calculator* calc = new Calculator();
string question = calc->MakeFormula();
cout << question <<" = "<< endl;
//string ret = calc->Solve(question);
//cout << ret << endl;
}
getchar();
}
// 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单
// 调试程序: F5 或调试 >“开始调试”菜单
// 入门提示:
// 1. 使用解决方案资源管理器窗口添加/管理文件
// 2. 使用团队资源管理器窗口连接到源代码管理
// 3. 使用输出窗口查看生成输出和其他消息
// 4. 使用错误列表窗口查看错误
// 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目
// 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件
运行后的截图
在文件中,我将string Calculator::MakeFormula()中的随机生成函数放在了主函数中,这样在重复调用的时候就不会出现相同算式的问题
使用github克隆项目以及提交代码
1.在本地文件中打开git,输入git push
2.上传完成
图片
感想与分享
本次的博客真的头大,原因是我们并不熟悉git和vs2017,经历的这一次作业,对git有了一定的了解,知道如何在上面下载文件和上传文件,我想在以后的工作中也同样会需要自己去学习使用新的工具,需要自己去获取知识,在不断成长和学习中,才不会被时代所淘汰。