- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个由两部分组成的问题,我希望我自己能理解。我会根据需要进行编辑!我正在尝试编写一个程序,该程序将从输入文件连续进行计算。文本文件看起来像这样:
int + 25 10
double / 5.5 8.5
...
每个实例都以 int、double、float 等类型开头,然后是计算类型(加、减等),然后是两个数字。我希望能够连续读取每个并将总和、乘积等输出到输出文件中。例如,如果我们使用上面的第一个示例,文件中的输出将是:
int 25 10 = 35
我有代码可以进行以下计算:
void doAddition(ifstream &inFile) {
int num1, num2;
inFile >> num1 >> num2;
cout << num1 << num2 << " = "<< (num1+num2) << '\n'; }
唯一的问题是我不知道如何添加变量类型(我试过使用字符串但它似乎不起作用),例如“int”或“double”所以我得到:
25 10 = 35
代替:
int 25 10 = 35
您可能会看到,我的第二个问题是,当我真的想将信息添加到输出文件时,我目前正在使用“cout”在屏幕上显示信息。这里有更多信息:
我用什么来移动到下一行:
void readToNextLine(ifstream& inFile) {
string t1, t2;
inFile >> t1 >> t2; }
我的主要代码:
ifstream inFile;
//ofstream outFile;
char ch;
int num1, num2;
inFile.open("infile.txt");
//outFile.open("outfile.txt");
if (inFile.is_open()){
inFile >> ch;
while (!inFile.eof())
{
switch (ch)
{
case '+':
doAddition(inFile);
break;
...
如您所见,我注释掉了 ofstream 部分,因为我无法让它正常工作。有什么建议么?我现在打开了大约 10 个窗口和两本 C++ 书籍,只是想将它们合乎逻辑地放在一起!
编辑:我不确定开关是否是最好的方法。我需要程序看到“int”并意识到它是一个词。如果我使用 4 种变量类型,如 int、double、float 和 long,也许我可以让它检查每个变量的第一个字母:i、d、f、l,然后一旦它知道什么类型就可以进入 +、-、等检查。感觉从逻辑上讲,这样做只会花费更多时间,而我本可以使用一系列类,但我不确定从哪里开始。
最佳答案
我真的不明白从文件中读取所有这些麻烦。 Stackoverflow 和网络上的例子太多了。也许是人们没有搜索,或者他们需要一个与他们的确切代码匹配的示例。
试试这个:
struct Input_Record
{
std::string data_type_as_string;
std::string operation;
std::string value1_as_string;
std::string value2_as_string;
friend std::istream& operator>>(std::istream& inp, Input_Record& r);
};
std::istream& operator>>(std::istream& inp, Input_Record& r)
{
inp >> r.data_type_as_string;
inp >> r.operation;
inp >> r.value1_as_string;
std::getline(inp, r.value2_as_string); // Use getline to eat the line ending.
}
// ...
Input_Record r;
while (input_file >> r)
{
// Do stuff with r
};
如果你真的想玩得开心,你可以使用父基类和工厂模式来根据输入创建对象:
class Binary_Operation // Base class for factory pattern.
{
public:
//! Evaluate the object and return the result as a string
// e.g. numbers as text
virtual std::string evaluate(void) const = 0;
};
class Binary_Integer_Operation : public Binary_Operation
{
public:
std::string evaluate(void) const
{
// Convert values to integers than perform the operation.
// Convert result to string using std::istringstream.
};
};
class Binary_Double_Operation : public Binary_Operation
{
// See Binary_Integer_Operation above.
};
这使您可以执行以下操作:
Binary_Operation * factory_create(const Input_Record& r)
{
Binary_Operation * p_obj = nullptr;
if (r.data_type == "int")
{
p_obj = new Binary_Integer_Operation;
// Initialize fields
}
if (r.data_type == "double")
{
p_obj = new Binary_Double_Operation;
// Initialize fields;
}
return p_obj;
}
你的处理循环看起来像:
Input_Record r;
while (input_file >> r)
{
Binary_Operation * p_operation = factory_create(r);
std::string result = p_operation->evaluate();
cout << "result = " << result << "\n";
delete p_operation;
}
关于c++ - 从输入文件到输出文件的算术运算?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22672437/
我正在尝试从 1 循环到 12,并为应用中特定 View 的更改网格输出一些跨度宽度。 $span-width: 8.21875%; $gap: 0.125%; @for $i from 1 thro
我试图在 Jekyll 的液体模板引擎中做一些基本的算术。我已经分配了一个变量 numColumns我试图在条件语句中使用它。 {% assign numColumns = 3 %} 注意我在下面的表
与 shift_left ieee.numeric_std 的功能, 我想将信号左移并插入 1或 0从右边。 signal qo: signed (3 downto 0) := (others=>'0
您在控制台中输入一些内容,例如(8+8)。然后程序会告诉你括号的插入是否正确。 这是我对错误括号的定义(当然还没有完成): () this means if one array element is
我有两个表(使用 PostgreSQL),它们看起来如下: 表1(p点从1到450递增1) --------+-------+--------+---------+---------+-------+
我正在编写一个任意精度的有理数包,我需要测试它的正确性和效率。当然,我可以自己组合一组临时测试,但由于我远不是第一个这样做的人,所以我认为值得一问:任何人都可以推荐我可以使用的现有测试集吗? 编辑:我
我最近一直在使用和学习 CSS3,并享受它的许多功能。现在我想知道是否可以设置一个有条件地分配 block 元素宽度的 CSS 规则。我所追求的那种东西 - 如果屏幕宽度小于 500 像素,则使用 3
我对这个实验中h的值有点疑惑。在 cpp 中, int h,J=3,n=200,p=3,h_m=(n+p+1)/2; float rt=(float)h_m/n; for(int j=0,j
算术+和按位或有什么区别吗?这有什么不同。 uint a = 10; uint b = 20; uint arithmeticresult = a + b; uint bitwiseOR = a |
我一直在尝试让算术 if 运算符起作用,但我似乎做不到。我是 C++ 的新手,仍在学习基础知识,但我只是想知道我是否正确使用了这个运算符。如果 x using namespace std; int
我在 VC++2010 中做过一些混合不同大小的操作数导致添加操作溢出的测试: int _tmain(int argc, _TCHAR* argv[]) { __int8 a=127;
#include int main(int argc,char *argv[]) { int i=10; void *k; k=&i; k++; printf("%p\n
在过去的 5 个小时里,我一直在寻找答案。尽管我找到了很多答案,但它们并没有以任何方式提供帮助。 我基本上要寻找的是任何 32 位无符号整数的按位异或运算符的数学、算术唯一表示。 尽管这听起来很简单,
结果是 127 double middle = 255 / 2 虽然这产生了 127.5 Double middle = 255 / 2 同时这也会产生 127.5 double middle = (
我在 Java 1.7 中有以下代码: DateFormat df = DateFormat.getInstance(); Date startDate = df.parse("07/28/12 01
此查询有效,没有错误 select add_months(date '2011-01-31', 1) from dual; ,而这个: select date '2011-01-31' + inter
理论上来说,如果我有一个无序项目列表 Link1 Link1 我如何使用 jQuery 执行以下操作? 1) 找到每个单独a元素的宽度 2) 找到每个单独的 li 元素的宽度 3)
想法如下:假设我有一个列表 P = [(1,0),(4,3)] 或类似的列表。我想以以下方式计算此列表定义的多项式:1X^0 + 4X^3。 为此,我编写了以下内容: evaluate(P,X,Y)
我正在从 mysql 数据库中提取数据。我想添加多次运行的长度,并按照跑得最远的人的排名对它们进行排序。 function determineLength($db, $name){
当尝试执行一个简单的 bash 脚本以将前面带有 0 的数字递增 1 时,原始数字被错误地解释。 #!/bin/bash number=0026 echo $number echo $((number
我是一名优秀的程序员,十分优秀!