“odwrotna liczba w c” Kod odpowiedzi

Odwrotna liczba całkowita w c

#include <stdio.h>

int main() {

  int n, reverse = 0, remainder;

  printf("Enter an integer: ");
  scanf("%d", &n);

  while (n != 0) {
    remainder = n % 10;
    reverse = reverse * 10 + remainder;
    n /= 10;
  }

  printf("Reversed number = %d", reverse);

  return 0;
}
Md. Redwan Hossain

odwrotna liczba w c

#include<stdio.h>
int main()
{
int r,temp,num,sum=0;
    printf("the given number: ");
    scanf("%d" ,&num);
    temp=num;
    while(temp!=0)
    {
       r=temp%10;
       sum=sum*10+r;
        temp=temp/10;
    }
printf("reverse number:%d\n",sum);
}
Innocent Ibis

Odpowiedzi podobne do “odwrotna liczba w c”

Pytania podobne do “odwrotna liczba w c”

Więcej pokrewnych odpowiedzi na “odwrotna liczba w c” w C

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu