Computer Science, asked by greeshmasri2000, 1 month ago


Integer a=5. b=4 =3
a=b+c
c=a-b
c = c +a
c=b+c
b = b +c
Print a, b ,c

Answers

Answered by karthikapallem
6

Answer:

a = 5 b = 4 c = 3 this is the answer

Answered by AnusritaS98
3

Answer:

import java.io.*;

public class integer

{

public static void main(String args [])

{

int a,b,c,d,e;

a= 5;

b=4;

c=3;

d= (b+c);

e=(a-b);

f=(c+a);

system.out.println("a="+d);

system.out.println("b="+e);

system.out.println("c="+f);

}

}

Explanation:

JavaScript is a programming language approved by the whole word. It is extremely popular in the world of programming and is used by 97.4% users around the globe. It is also known as a light weight interpreted programming language. It is used for creating interactive web applications and browsers.

Similar questions