Good day, community. Help a novice C # WindowsForms programmer. There is a task: to write a program for counting
X = x1 + x2 + ... + xn, xn = zn ^ 3-bn + an ^ 2 / tan (Bettan).
On Form1 I enter n , and I want for each xn open a form for entering z,a,b,betta . Decided to do in a loop:
for (i = 0; i < n; i++) { Input.Show(); X[i] = Z[i] * Z[i] * Z[i] - B[i] + (A[i] * A[i]) / Math.Tan(Betta[i]); } But the cycle opens at once n forms, it is not convenient. I could not implement a pause in the cycle either. Question: "How can I make the forms open one by one? Or can you tell me how to make convenient data entry in another way?" Thanks in advance to everyone who responds.
Inputis what you have? - BlackWitcher