Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的学习编写一个简单的加密程序,但我被困在如此简单的事情上。我已将一个 3 位数字输入到一个名为 Number 的变量中。我现在正试图将这三个数字中的每一个都放入名为 n1、n2 和 n3 的单独变量中,以便我可以单独操作它们。
我以为我可以做 number[1] 等,但我不断收到错误。
知道如何正确执行此操作吗?
谢谢!
这是 number 的示例345。这个想法是除以然后读取最后一位数字% 10。
345
% 10
int number = 345; int n1 = number / 100; int n2 = (number / 10) % 10; int n3 = number % 10;
如果number是字符串,您尝试过的内容可能会起作用。
number