- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个程序,该程序在名为 Asset 的类中具有单倍和双倍折旧功能。我在双重折旧函数以及如何将其实现到我的类中时遇到了麻烦。此外,关于如何验证用户输入的任何建议(即没有负数,没有零,并且在询问字符时只有一个字符)?这是我的主文件、类和类头文件。
当我运行这个程序并尝试使用双重折旧函数时,它只使用直线折旧函数。它忽略了 Assets 类别中的双重功能。这是为什么?此外,在我的 main 中,当有人输入无效输入时,它会执行 if 循环,但随后会继续 main 的其余部分,我如何让它回到 do while 循环的顶部?
// Depreciation.cpp : main project file.
#include "stdafx.h"
#include <iostream>
#include "Asset.h"
#include <limits>
using namespace std;
using namespace System;
char choice;
int main()
{
double c;
double s;
double l;
int y = 0;
bool wrongdata = false;
//normal input task; welcome message, input of 3 fields and output features - with full data validation
cout << "Welcome to the Depreciation calculator!"<<endl;
do{
cout << "Please enter an Asset Cost: " << endl;
cin >> c;
if (!cin.good())
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
cout<<"Please input a correct value" << endl;
wrongdata = true;
}
if (c == 0)
{
cout << "Thanks for using my program!" << endl;
break;
}
cout<< "Please enter the Salvage Value: " << endl;
cin >> s;
if (!cin.good())
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
cout << "Please input a correct value" << endl;
wrongdata = true;
}
if (s == 0)
{
cout << "Thanks for using my program!"<<endl;
break;
}
cout << "Please enter the Asset life (in years): " << endl;
cin >> l;
if (!cin.good())
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
cout << "Please input a correct value" << endl;
wrongdata = true;
}
if (l == 0)
{
cout << "Thanks for using my program!" << endl;
break;
}
Asset a = Asset(c, s, l);
cout << "The annual depreciation is equal to " << a.getAnnualDep() << " for Straight-Line and \n" << a.getDDDep(y) << " for one year of Double Declining" << endl;
cout << "Would you like to see a depreciation schedule for Straight-Line, DDL, or Neither? (S/D/N)" << endl;
cin >> choice;
choice = toupper(choice);
if (choice = 'S')
{
cout << "Year Start Value Depreciation End Value" << endl;
for (int i = 1; i <= a.getorigLife(); i++)
{
cout << i << "\t\t" << a.getBegBal(i) << "\t\t" << a.getAnnualDep() << "\t\t" << a.getEndBal(i) << endl;
}
}
else if (choice = 'D')
{
cout << "Year Start Value Depreciation End Value" << endl;
for (int j = 1; j <= a.getorigLife(); j++)
{
cout << j << "\t\t" << a.getDDBBal(j) << "\t\t" << a.getDDDep(y) << "\t\t" << a.getDDEBal(j) << endl;
}
}
else if (choice = 'N')
{
cout << "Thanks for using my program" << endl;
break;
}
else
{
cout << "Could not understand your input";
wrongdata = true;
}
} while (wrongdata);
system("pause");
return 0;
}
//asset class
#include "stdafx.h"
#include "Asset.h"
Asset::Asset(double c, double s, int L)
{
ocost = c;
osalv = s;
oLife = L;
anndep = (c - s) / L;
double SLrate = (100.0 / L)/100;
DDanndep = (2 * SLrate) * c;
double DDrate = (2 * SLrate);
//declare arrays for starting and ending values
bbal = new double[oLife];
ebal = new double[oLife];
DDebal = new double[oLife];
DDbbal = new double [oLife];
//calculate straight line depreciation
bbal[0] = ocost;
DDbbal[0] = ocost;
for (int i = 0; i < oLife; i++)
{
if (i > 0)
{
bbal[i] = ebal[i - 1];
}
ebal[i] = bbal[i] - anndep;
}
//calculate double depreciation
for (int j = 0; j < oLife; j++)
{
if (j > 0)
{
DDbbal[j] = DDebal[j - 1];
}
DDebal[j] = DDbbal[j] - (DDbbal[j] * DDrate);
DDbbal = DDebal;
}
}
double Asset::getAnnualDep()
{
return anndep;
}
double Asset::getOrigCost()
{
return ocost;
}
double Asset::getOrigSalvage()
{
return osalv;
}
int Asset::getorigLife()
{
return oLife;
}
double Asset::getBegBal(int y)
{
return bbal[y - 1];
}
double Asset::getEndBal(int y)
{
return ebal[y - 1];
}
double Asset::getDDDep(int y)
{
return DDanndep;
}
double Asset::getDDBBal(int y)
{
return DDbbal[y - 1];
}
double Asset::getDDEBal(int y)
{
return DDebal[y - 1];
}
Asset::~Asset()
{
}
//class header
#pragma once
class Asset
{
public:
Asset(double Cost, double Salvage, int Life); //constructor
~Asset(void); //destructor
double getOrigCost(), getOrigSalvage(), getAnnualDep();
double getBegBal(int year), getEndBal(int year), getDDBBal(int year), getDDEBal(int year), getDDDep(int year);
int getorigLife();
char choice;
private:
double ocost, osalv, anndep, DDanndep;
int oLife;
double* bbal;
double* ebal;
double*DDebal;
double*DDbbal;
};
最佳答案
请注意,在 C++ 中,=
是赋值,==
是比较。
在像这样的 if 语句中:
if (choice = 'S')
您正在将“S”分配给 choice
,然后检查它是否非零。
将其更改为:
if (choice == 'S')
关于c++ - 类不起作用的折旧函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33589685/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!