Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. /******************************************************************************
  2.  
  3. Online C Compiler.
  4. Code, Compile, Run and Debug C program online.
  5. Write your code in this editor and press "Run" button to compile and execute it.
  6.  
  7. *******************************************************************************/
  8.  
  9. #include <stdio.h>
  10.  
  11. int main()
  12. {
  13. int a;
  14. int c = 0;
  15. int b = 10;
  16. int d = 0;
  17. scanf("%d", &a);
  18. c = a / b;
  19. d = a % b;
  20. if (c == d)
  21. {
  22. printf("Палиндром");
  23. }
  24. else
  25. {
  26. printf("Не палиндром");
  27. }
  28. return 0;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement