#include <stdio.h>
int main()
{
int nstart, nstop,a;
printf(“Enter number of timesn”);
scanf_s(“%d”, &a);
int n = 1;
while (n <= a) {
printf(“Asking user to enter nstart valuen”);
scanf_s(“%d”, &nstart);
printf(“Asking user to enter nstop valuen”);
scanf_s(“%d”, &nstop);
int x = 1;
int y = nstart;
n = n + 1;
while (y <= nstop) {
x *= y;
y++;
}
printf(“nstart = %d”, nstart);
printf(“& nstop =%d”, nstop);
printf(“====> zNo(%d,%d) = %d”, nstart, nstop, x);
getchar();
getchar();
}
return 0;
}
I want to make a flow chart of these codes. It is a VisualStudio C++ program.
Expert Answer
An answer will be send to you shortly. . . . .