6.4.. Napisati program koji izračunava i ispisuje rezultate:
1 + 7 MOD 3 * (2 + 7) DIV 2
(1 + 7) MOD 3 * 2 + 7 DIV 2

Opis rješenja:

Opis programa:

Listing programa:

// 06411128
#include <stdio.h>
#include <math.h>

int main()
{
      int x,y;
      x=1+(7%3)*(2 + 7)/2;
      y=(1+7)%(3)*2+7/2;
      printf("%d\n",x);
      printf("%d\n",y);
      return 0;
}

Ispis na ekranu:

Index