编程逻辑题

发布于 2024-11-28 08:08:31 字数 265 浏览 1 评论 0原文

  1. 使用循环结构设计一个程序的逻辑,该程序输出从 1 到 25 的每个偶数及其平方和立方。

这是我的答案,我需要知道我是否走在正确的轨道上,仅供参考,这是编程逻辑而不是实际代码。我需要你的帮助,谢谢

If n > 0> 25 MOD 2 = o then
  NMOD2 = 0
Else then
  NMOD2 = (0)^2
End If

If NMOD2 = 0 then
  NMOD2 = (0)^3
  1. Design the logic, using a looping structure, for a program that outputs every even number from 1 through 25 along with its square and cube.

Here is my Answer please I need to know if I am on the right track FYI it is the programming Logic not the actual code. I need your help thanks

If n > 0> 25 MOD 2 = o then
  NMOD2 = 0
Else then
  NMOD2 = (0)^2
End If

If NMOD2 = 0 then
  NMOD2 = (0)^3

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人间不值得 2024-12-05 08:08:31

嗯,像这样?

for (int i = 1; i <= 25; i++) {
    if (i % 2 == 0) {
        cout << i << ' ' << i*i << ' ' << i*i*i << "\n\n";
    }
}

抱歉,我不明白你的伪代码

Um, like this?

for (int i = 1; i <= 25; i++) {
    if (i % 2 == 0) {
        cout << i << ' ' << i*i << ' ' << i*i*i << "\n\n";
    }
}

sry i dont understand your pseudocode

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文