Advertisement
vvsvvs

Untitled

Apr 13th, 2021
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. int a = 1234;
  2. int f = 0;
  3. Console.WriteLine(a);
  4. int b = a % 10;
  5. a = a / 10;
  6. f = f + b;
  7. int c = a % 10;
  8. a = a / 10;
  9. f = f * 10 + c;
  10. int d = a % 10;
  11. a = a / 10;
  12. f = f * 10 + d;
  13. int e = a % 10;
  14. a = a / 10;
  15. f = f * 10 + e;
  16. Console.WriteLine(f);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement