Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. int k;
  2. int x = Convert.ToInt32(listBox1.SelectedItem.ToString());
  3. k = (x - 1984) % 60;
  4.  
  5. ######################
  6.  
  7. int k, x = Convert.ToInt32(listBox1.SelectedItem.ToString());
  8. k = (x - 1984) % 60;
  9.  
  10. ######################
  11.  
  12. int k = (Convert.ToInt32(listBox1.SelectedItem.ToString()) - 1984) % 60;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement