- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我制作了一个程序,它接受用户输入的单词,将它们转换为数字,运行计算,然后将它们转换回单词,非常简单,但是我的代码有错误。
每当我尝试输入一百或更高的值时,我得到的输出是“零”。 (很可能意味着我尝试转换的数字是零,而实际上它不应该是零。)
出于这个原因,我认为问题出在计算函数“write_value”中,但是我不确定是什么。
过去几个小时我一直在做这个,所以它可能是我没有看到的小东西,但它可能是几件事,所以与其浪费更多时间,我想我应该把它贴在这里供一些更有经验的人看看。
在此先感谢您的帮助。 ^^
示例输入为:one_hundred_44 + two_hundred_thirty_8
正确的输出:three_hundred_eighty_two
当前输出:零
当前代码:
using namespace std;
/**
* Map units digits into words
*
*/
string units[] = {
"", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine",
"ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen",
"seventeen", "eighteen", "nineteen"
};
/**
* Map tens digits into words
*/
string tens[] = {
"", "ten", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"
};
/**
* Splits a string into components
*
* @param words array for the components (assumed large enough)
* @param base the string to split
* @param separator the separator character
* @return pointer to the first unused element in the array
*/
string* split(string* words, string base, char separator) {
string* result = words;
istringstream input(base);
string token;
while (getline(input, token, separator)) {
if (token.length() > 0 && token != "and") {
if (token == "hundred") {
*--result += "_hundred";
*result++;
} else if (token == "thousand") {
*--result += "_thousand";
*result++;
} else if (token == "million") {
*--result += "_million";
*result++;
} else {
*result++ = token;
}
}
}
return result;
}
/**
* Joins an array of component strings into a single string
*
* @param words pointer to first component
* @param end pointer to the component beyond the last
* @param separator the separator character
* @return the joined string
*/
string join(string* words, string* end, char separator) {
string result;
if (words < end) {
result.append(*words);
for (string* w = words + 1; w < end; w++) {
result.append(separator + *w);
}
}
return result;
}
/**
* Writes number words into an array
*
* @param words array to store the words
* @param n the number to write
* @return pointer to the first unused element
*/
string* write_value(string* words, int n) {
string* result = words;
int t = (n % 100) / 10;
int u = (n % 10);
if (t == 1) { // fixes teens
t--;
u += 10;
}
if (t) {
*result++ = tens[t];
}
if (u) {
*result++ = units[u];
}
return result;
}
/**
* Reads an array of number words
*
* @param words the number words to read
* @param end pointer to the word beyond the last
* @return the value read
*/
int read_value(string* words, string* end) {
int result = 0;
string* w = words;
for (int i = 1; i < 10; i++) {
if (*w == tens[i]) {
result += 10 * i;
w += 1;
break;
}
}
for (int i = 1; i < 20; i++) {
if (*w == units[i]) {
result += i;
break;
}
}
return result;
}
/**
* Writes a number word string
*
* @param n the number to write
* @return the word string
*/
string Wordnum::write_number(int n) {
string result;
string words[20];
string* end;
if (n == 0) {
result = "zero";
} else if (n < 0) {
end = write_value(words, -n);
result = "negative_" + join(words, end, '_');
} else {
if (n > 100) {
end = write_value(words, n);
result = join(words, end, '_') + "hundred_";
} else if (n > 1000) {
end = write_value(words, n);
result = join(words, end, '_') + "thousand_";
} else if (n > 1000000) {
end = write_value(words, n);
result = join(words, end, '_') + "million_";
}
end = write_value(words, n);
result = join(words, end, '_');
}
return result;
}
/**
* Reads a number word string
*
* @param n the string to read
* @return the value read
*/
int Wordnum::read_number(string n) {
int result;
string words[20];
for (int i = 0; i < n.length(); i++) {
n[i] = tolower(n[i]);
if (n[i] == '-') n[i] = '_';
}
string* end = split(words, n, '_');
if (end == words || words[0] == "zero") {
result = 0;
} else if (words[0] == "negative") {
result = -read_value(words + 1, end);
} else {
result = read_value(words, end);
for (int i = 0; i < n.length(); i++) {
if (words[i] == "hundred") {
result = read_value(words - 1, end) * 100;
break;
} else if (words[i] == "thousand") {
result = read_value(words - 1, end) * 1000;
break;
} else if (words[i] == "million") {
result = read_value(words - 1, end) * 1000000;
break;
}
}
}
return result;
}
/**
* Inserts a Wordnum into an output stream as a word string
*
* @param os the stream to insert into
* @param n the value to insert
* @return the modified stream
*/
ostream& operator<<(ostream& os, const Wordnum& n) {
return os << Wordnum::write_number(n.value_);
}
/**
* Extracts a Wordnum in word string form from an input stream
*
* @param is the stream to extract from
* @param n the value to assign
* @return the modified stream
*/
istream& operator>>(istream& is, Wordnum& n) {
string text;
if (is >> text) {
n.value_ = Wordnum::read_number(text);
}
return is;
}
头文件:
#ifndef WORDNUM_H_
#define WORDNUM_H_
#include <string>
#include <istream>
#include <ostream>
/**
* A class to read and write numbers in word form
*/
class Wordnum {
public:
/**
* Writes a number word string
*
* @param n the number to write
* @return the word string
*/
static std::string write_number(int n);
/**
* Reads a number word string
*
* @param n the string to read
* @return the value read
*/
static int read_number(std::string n);
/**
* Creates a new Wordnum for a given value
*
* @param n the value of the number
*/
Wordnum(int n = 0) {
value_ = n;
}
/**
* Creates a new Wordnum from a word string
*
* @param n the value of the number
*/
Wordnum(std::string n) {
value_ = read_number(n);
}
/**
* Creates a new Wordnum as a copy of another
*
* @param n the value to copy
*/
Wordnum(const Wordnum& n) {
value_ = n.value_;
}
/**
* Makes this equivalent to n
*
* @param n the value to copy
* @return the modified Wordnum
*/
Wordnum& operator =(const Wordnum& n) {
value_ = n.value_;
return *this;
}
/**
* Converts a Wordnum to an int
*
* @return the value as an int
*/
operator int () const {
return value_;
}
/**
* Converts a Wordnum to a string
*
* @return the value as a word string
*/
operator std::string() const {
return write_number(value_);
}
/**
* Inserts a Wordnum into an output stream as a word string
*
* @param os the stream to insert into
* @param n the value to insert
* @return the modified stream
*/
friend std::ostream& operator <<(std::ostream &os, const Wordnum& n);
/**
* Extracts a Wordnum in word string form from an input stream
*
* @param is the stream to extract from
* @param n the value to assign
* @return the modified stream
*/
friend std::istream& operator >>(std::istream &is, Wordnum& n);
/**
* Returns sum of n1 and n2
*/
friend Wordnum operator +(const Wordnum& n1, const Wordnum& n2) {
return Wordnum(n1.value_ + n2.value_);
}
/**
* Returns difference of n1 and n2
*/
friend Wordnum operator -(const Wordnum& n1, const Wordnum& n2) {
return Wordnum(n1.value_ - n2.value_);
}
/**
* Returns product of n1 and n2
*/
friend Wordnum operator *(const Wordnum& n1, const Wordnum& n2) {
return Wordnum(n1.value_ * n2.value_);
}
/**
* Returns quotient of n1 and n2
*/
friend Wordnum operator /(const Wordnum& n1, const Wordnum& n2) {
return Wordnum(n1.value_ / n2.value_);
}
private:
int value_;
};
#endif
最佳答案
将字符转换为整数并不简单。
一个 char*(cstring) 是一个 char 数组,其中每个元素的大小为一个字节(8 位)
一个整数是 4 个字节(32 位),因此,正确地从 char 转换为 int 你必须用 char 填充 4 个字节中的每一个。换句话说,您需要 4 个字符才能构成一个 int。
好像这还不够,还有一个因素需要考虑到这一点。 字节顺序(我会留给你去查)你的需要考虑系统。
字节顺序决定了您的系统如何存储数据。例如,在 16 位整数中,您存储数字 2您的系统可以通过以下两种方式之一存储它:
方式一:00000010 00000000
方式二:00000000 00000010
由于 16 位整数存储在 2 个字节中,因此可以从右到左或从左到右。 Here是一张图片。
这是进行字节序检查所必需的代码从 char* (cstring) 转换为 int (32 位整数)
bool isBigEndian(){
int a = 1;
return !((char*)&a)[0];
}
int convertToInt(char *charArr, int len){ //len should be <= 4
int a = 0;
if(!isBigEndian())
for(int i = 0; i < len; i++)
((char*)&a)[i] = charArr[i];
else
for(int i = 0; i < len; i++)
((char*)&a)[3-i] = charArr[i];
return a;
}
因为代码将适用于大小为 4 或更小的 char* 数组,任何更多都不起作用因为 int 不能容纳超过 4 个字节。我建议查找 big endian 与 little endian在查看代码之前,它会更有意义。如果您对这是如何完成的有直觉,您可以转换为常规 int 以外的类型,您可以转换为 Uint16(16 位)或 Uint8(8 位;一次存储一个字符的完美大小;)
我希望你现在已经解决了这个问题,如果没有,希望这对你有所帮助。
关于c++ - 程序计算错误,类型转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19982377/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!