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
6
Answer:
a = 5 b = 4 c = 3 this is the answer
Answered by
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