在我正在做的一个问题中,我需要一个流程图的帮助。我已经完成了编程代码,但是如果有人能给我一个关于如何做到这一点的想法,我就不知道流程图,那么我会很感激。这是个问题:
编写一个C ++程序,通过正确的输入提示从键盘3整数读取,然后显示这三个数字中任意一对数字的最大总和。例如,如果3个数字是5,6和7,则最大总和来自6 + 7 = 13。绘制这个C ++程序的流程图,并同时检查程序中的三个输入整数12,3和7,或者一组不同的3个数字,这将使您的程序设计中的桌面检查变得不那么重要。
我已经完成了以下代码:
代码:
#include <iostream>
using namespace std;
int main()
{
int num1, num2, num3, sum;
cout << "Enter number ";
cin >> num1;
cout << "Enter number ";
cin >> num2;
cout << "Enter number ";
cin >> num3;
/* if(num1 >= num2)
{
}*/
if(num1 > num2 && num3 >
num2)
{
sum = num1 + num3;
cout << "The sum of " << num1 << " and " << num3 << " = " << sum << endl;
}
else if(num1 >= num3 && num2 >= num3)
{
sum = num1 + num2;
cout << "The sum of " << num1 << " and " << num2 << " = " << sum << endl;
}
else if (num2 >= num1 && num3 >= num1)
{
sum = num2 + num3;
cout << "The sum of " << num2 << " and " << num3 << " = " << sum << endl;
}
//else
//{
// cout << "all three numbers must be diffrent" <<endl;
// }
system("PAUSE");
return 0;
}
答案 0 :(得分:1)
您应该阅读Flowcharts。如果您不了解流程图,您将如何制作流程图。
答案 1 :(得分:0)
了解流程图,查看http://www.edrawsoft.com/flowchart-examples.php处的流程图,并概念化您自己的流程图。
答案 2 :(得分:-1)
阅读state machines。这将帮助您绘制程序的行为并创建必要的流程图。 :)