Interschimbarea valorilor a 2 (doua) variabile folosind operatiile de adunare si scadere.

Поделиться
HTML-код
  • Опубликовано: 14 дек 2024

Комментарии • 1

  • @CapturileCunoasterii
    @CapturileCunoasterii  Год назад

    #include
    int main()
    {
    int x;
    int y;
    x = 2;
    y = 3;
    x = x + y;
    y = x - y;
    x = x - y;
    }