0
Someone help me in the sum of this two variables int x=2 int y=4 system.out.println ( )
Java opperators
3 Respuestas
0
Thanks
0
using System.out;
public class Program
{
public static void main(String[] args) {
int x=2;
int y=4;
println(x+y);
}
}