- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
关闭。这个问题是opinion-based .它目前不接受答案。
想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它.
7年前关闭。
Improve this question
在过去的几周里,我一直在学习 C++,并被分配了一项任务。我已经完成了这项任务,并想知道是否有人能够为我指出正确的方向,以使我的代码更加高效和直接。
以下是任务简介:
请看下面的部分 PDL 程序,它读取一个表示要加密的值的(三位)整数,一个表示加密 key 的(一位)整数,加密该值并打印加密的值。使用的加密方法是将给定数字中的每个数字替换为((该数字加 key 的总和)模 10),然后交换第一个和最后一个“加密”数字。produceEncryptedNumber
output( "Enter the original three-digit number: ")
input( originalNumber) //read in a (three-digit) number
output( "Enter the key: ")
input( key) //read in a (one-digit) number
call isolateDigits //find out the 3 digits that make up the number
call replaceDigits //’encrypt’ each of the three digits
call swapDigit1WithDigit3 //swap first and last digit
call recomposeEncryptedNumber //recreate encrypted number from ‘encrypted’ values
//output encrypted number
output( "The encrypted number for ", originalNumber, " is ", encryptedNumber, ".")
例如,如果输入的数字是 216,给定的 key 是 7,那么在应用所描述的加密过程后,第一个数字 (2) 将变为 9,中间数字 (1) 将变为 8,最后一个数字 (6) 将变为3. 然后交换第一个和最后一个加密数字。程序显示加密的数字:在本例中为 389。
程序应如何出现在命令窗口中的示例(具有预期返回):Enter the original three-digit number: 216
Enter the key: 7
The encrypted number for 216 is 389.Enter the original three-digit number: 123
Enter the key: 7
The encrypted number for 123 is 098
这是我的解决方案代码:
`
#包括
using namespace std;
// Global Variables
int originalNumber, key, a, b, c, number, valA, valB, valC, encryptedNumber;
// Main Section of the Program
int main()
{
// Get original Number
cout << ("\nEnter the original three-digit number: ");
cin >> originalNumber;
// Get Key
cout << ("\nEnter the key: ");
cin >> key;
// Call isolateDigits
void isolateDigits();
isolateDigits();
// Call replaceDigits
void replaceDigits();
replaceDigits();
// Call swapDigit1WithDigit3
void swapDigit1WithDigit3();
swapDigit1WithDigit3();
// Call recomposeEncryptedNumber
void recomposeEncryptedNumber();
recomposeEncryptedNumber();
// Check for a 3-digit outcome and print out the original + final values
// If the value of the outcome is more than 2-digits and less than 3-digits, then add a single 0 at the front of the output.
if (encryptedNumber >= 9 && encryptedNumber <= 99)
cout << "\nThe encrypted number for " << originalNumber << " is 0" << encryptedNumber << ".\n\n";
// If the value of the outcome is less than 2-digits, then add two 00's at the front of the output.
else if (encryptedNumber <= 9)
cout << "\nThe encrypted number for " << originalNumber << " is 00" << encryptedNumber << ".\n\n";
// If the value is 3-digits exactly then simply output the value in the normal order.
else
cout << "\nThe encrypted number for " << originalNumber << " is " << encryptedNumber << ".\n\n";
// Pause at end
system("pause");
return(0);
}
// isolateDigits procedure
void isolateDigits()
{
a = originalNumber / 100 % 10;
b = originalNumber / 10 % 10;
c = originalNumber % 10;
}
// replaceDigits procedure for Encryption
void replaceDigits()
{
valA = a + key;
valB = b + key;
valC = c + key;
}
// swapDigit1WithDigit3 procedure
void swapDigit1WithDigit3()
{
valC = a + key;
valB = b + key;
valA = c + key;
}
// recomposeEncryptedNumber procedure
void recomposeEncryptedNumber()
{
// Check for values above 2-digits
if (valA >= 10)
valA = valA - 10;
if (valB >= 10)
valB = valB - 10;
if (valC >= 10)
valC = valC - 10;
// Put the values together
encryptedNumber = 100 * valA + 10 * valB + valC;
}
最佳答案
好吧,鲍里斯,
class Encryptor
{
Public:
Encryptor();
~Encryptor();
void setKey(int key);
unsigned int encryptNumber(unsigned int number);
Private:
void isolateDigits();
void replaceDigits();
void swapDigits();
void recomposeNumber();
unsigned int a,b,c;
unsigned int number;
unsigned int key;
};
void Encryptor::replaceDigits()
{
a += key;
b += key;
c += key;
}
关于c++ - 找到解决方案的最有效方法 - C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26719759/
我遇到了一个奇怪的问题。我有这个: $(document).ready(function () {
我正在编写一个程序,它从列表中读取一些 ID,从中找出不同的 URL,然后将图像保存到我的 C: 驱动器中。 如果我在浏览器中导航到图像 URL,它们就会起作用。此外,如果我尝试从不同的服务器获取图像
我编写了一个 REST WCF RIA Silverlight 4.0 兼容服务,我可以从 javascript + jQuery.1.4.2.js + JSON2.js(当然,还可以从 .NET 4
我很确定这个网站实际上还没有得到回答。一劳永逸地,与 32 位有符号整数范围内的数字字符串匹配的最小正则表达式是什么,范围是 -2147483648至 2147483647 . 我必须使用正则表达式进
我有两个data.table;我想从那些与键匹配的元素中随机分配一个元素。我现在这样做的方式相当慢。 让我们具体点;这是一些示例数据: dt1<-data.table(id=sample(letter
我已经安装了 celery 、RabitMQ 和花。我可以浏览到花港。我有以下简单的工作人员,我可以将其附加到 celery 并从 python 程序调用: # -*- coding: utf-8 -
我正在使用 ScalaCheck 在 ScalaTest 中进行一些基于属性的测试。假设我想测试一个函数,f(x: Double): Double仅针对 x >= 0.0 定义的, 并返回 NaN对于
我想检查文件是否具有有效的 IMAGE_DOS_SIGNATURE (MZ) function isMZ(FileName : String) : boolean; var Signature: W
在 Herbert Schildt 的“Java:完整引用,第 9 版”中,有一个让我有点困惑的例子。它的关键点我无法理解可以概括为以下代码: class Test { public stat
我在工作中查看了一些代码,发现了一些我以前没有遇到过的东西: for (; ;) { // Some code here break; } 我们一直调用包含这个的函数,我最近才进去看看它是
在 Herbert Schildt 的“Java:完整引用,第 9 版”中,有一个让我有点困惑的例子。它的关键点我无法理解可以概括为以下代码: class Test { public stat
我试图编写一个函数,获取 2D 点矩阵和概率 p 并以概率 p 更改或交换每个点坐标 所以我问了一个question我试图使用二进制序列作为特定矩阵 swap_matrix=[[0,1],[1,0]]
这个问题在这里已经有了答案: Using / or \\ for folder paths in C# (5 个答案) 关闭 7 年前。 我在某个Class1中有这个功能: public v
PostgreSQL 10.4 我有一张 table : Column | Type ------------------------- id | integer| title
我正在 Postgresql 中编写一个函数,它将返回一些针对特定时区(输入)计算的指标。 示例结果: 主要问题是这只是一个指标。我需要从其他表中获取其他 9 个指标。 对于实现此目标的更简洁的方法有
我需要在 python 中模拟超几何分布(用于不替换采样元素的花哨词)。 设置:有一个装满人口许多弹珠的袋子。弹珠有两种类型,红色和绿色(在以下实现中,弹珠表示为 True 和 False)。从袋子中
我正在使用 MaterializeCSS 框架并动态填充文本输入。我遇到的一个问题是,在我关注该字段之前,valid 和 invalid css 类不会添加到我的字段中。 即使我调用 M.update
是否有重叠 2 个 div 的有效方法。 我有以下内容,但无法让它们重叠。 #top-border{width:100%; height:60px; background:url(image.jpg)
我希望你们中的一位能向我解释为什么编译器要求我在编译单元中重新定义一个静态固定长度数组,尽管我已经在头文件中这样做了。这是一个例子: 我的类.h: #ifndef MYCLASS_H #define
我正在使用旧线程发布试图解决相同问题的新代码。什么是安全 pickle ? this? socks .py from socket import socket from socket import A
我是一名优秀的程序员,十分优秀!