Guest User

Untitled

a guest
Aug 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. try{
  2.      pom= LabeledEdit3;
  3.      jednotky=StrToInt(LabeledEdit3->Text);
  4.     if(jednotky<1) throw -1;
  5.     if(jednotky>9) throw 10;
  6.  
  7.     pom= LabeledEdit4;
  8.     desitky=StrToInt(LabeledEdit4->Text);
  9.     if(desitky<1) throw -1;
  10.     if(desitky>9) throw 10;
  11.  
  12.     pom= LabeledEdit5;
  13.     stovky=StrToInt(LabeledEdit5->Text);
  14.     if(stovky<1) throw -1;
  15.     if(desitky>9) throw 10;
  16.  
  17. }
Add Comment
Please, Sign In to add comment