This program is about to determine the r Value
which are following this statement:
int rV;
if ( (p-1) % rV == 0 && rV % ( (p-1) / rV ) == 1 && rV % (q-1) == 1 )
tbKr.Text = rV.ToString();
rV = Convert.ToInt32(tbKr.Text);
And this is the error:
Use of unassigned local variable 'rV' (CS0165)
Thank you so much for your help.