Pre-test loop in C#
bool condition = false; [NOTE: this line is not part of the loop it is the condition which must be met for the loop to occur. If it is not satisfied the loop does not happen.
while (condition == false)
{
Do stuff
condition = checkCondition();
}
To draw this as a flowchart you just have to show that your flowchart can repeat a step/steps indefinitely depending on a condition
sfafa
wefwfe
algorithms is language independent
I really don't understand you.....
Algorithm Step1: Read A, B, C Step2: If A > B is True, then check whether A > C, if yes then A is greatest otherwise C is greatest Step3: If A > B is False, then check whether B > C, if yes then B is greatest otherwise C is greatest Give the Flowchart Answer
Look up "Flowchart" in wikepedia, most of what you need to know can be found there. Get a flow chart symbol template and a sheet of paper and you are on your way.
You can write computer-programs in it.
sfafa
A manual flowchart is static. The advantage of an interactive Visual Logic flowchart is that it allows users to input values for various variables at runtime. When the flowchart is finished, users can then run the program behind the chart.
A
For example, if you don't have a FooBar-language compiler, but have a FooBar-to-C translator, then you still can use FooBar-language programs.
wefwfe
start accept a,b and c c=a+b display c stop
C# is a derivative of C++, designed to allow C++ programmers to take advantage of the .NET environment. Officially, it is an object oriented language that encompasses strong typing and component orientation.
kk
algorithms is language independent
I really don't understand you.....