“Program C do zamiany dwóch liczb” Kod odpowiedzi

Program C do zamiany dwóch liczb za pomocą zmiennej tymczasowej

#include <stdio.h>
int main()
{
    int a, b, temp;
    printf("enter the values of a and b: \n");
    scanf("%d%d", &a, &b );
    printf("current values are:\n a=%d\n b=%d\n", a, b);
    temp=a;
    a=b;
    b=temp;
    printf("After swapping:\n a=%d\n b=%d\n", a, b);
}
VinCoD

Program C do zamiany dwóch liczb

// Overcomplicating things lol. Try this
#include <stdio.h>
int main()
{
    int x, y;
    printf("Enter Value of x ");
    scanf("%d", &x);
    printf("\nEnter Value of y ");
    scanf("%d", &y);
    int temp = x;
    x = y;
    y = temp;
    printf("\nAfter Swapping: x = %d, y = %d", x, y);
    return 0;
}
Weary Wolf

Odpowiedzi podobne do “Program C do zamiany dwóch liczb”

Pytania podobne do “Program C do zamiany dwóch liczb”

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

Przeglądaj inne języki kodu