Search:

Type: Posts; User: ohad

Search: Search took 0.07 seconds.

  1. Replies
    7
    Views
    1,238

    Re: what is the way to Calculate

    so what the result of c = c + a * b;

    --- Update ---

    what the result of c = c + a * b;
  2. Replies
    7
    Views
    1,238

    Re: what is the way to Calculate

    ok but how i do it a*b is 2 and then how do i do c=c&6
  3. Replies
    7
    Views
    1,238

    what is the way to Calculate

    public class NewClass4 {
    public static void main(String[] args) {
    int a = 1;
    int b = 2;
    int c = 3;
    a += 5;
    b *= 4;
    c += a * b;
    c %= 6;
    System.out.println("a = " + a);
Results 1 to 3 of 3