Advertisement
Guest User

project

a guest
Feb 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public static string unary_encode(int n)
  2. {
  3. string s = "";
  4. while (n>0)
  5. {
  6. s += "0";
  7. --n;
  8. }
  9.  
  10. s += "1";
  11. return s;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement