如何绘制计算1到100之间所有奇数之和的流程图
帮我画出流程图来求所有odf号的总和。从 1 到 100
Help me to draw flowchart to find sum of all odf no. from 1 to 100
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
帮我画出流程图来求所有odf号的总和。从 1 到 100
Help me to draw flowchart to find sum of all odf no. from 1 to 100
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以使用循环来跟踪该周期并确定每个数字 %2 是否剩余,那么它是奇数
,您可以在该循环之外创建一个用零初始化的变量,然后您将在循环内部使用它来对 if 语句生成的所有 ood 数字求和。
我建议你自己谷歌一下这个问题,这比我的解释对你更有用
You can use a loop to keep track of this period and decide if every digit %2 leftovers then it is an odd number
, you can make a variable initialized by zero outside this loop, then you will use it inside the loop to sum all ood numbers produced from the if statement.
I suggest googling the problem on your own, it is more useful for you than my explanation