- 1
can someone help me out??
write a program that takes 2 interger values as input and write the sum in vertical order example: 23455 36546 ----------- 60001
6 Answers
0
what do u mean vertical order??
0
x10
0
Uhhhh..??What do ya mean?,Is it quiz?
0
This can be done. But you are asking us to write a program that the computer language already does for you.
better off just letting the language do the work for you.
int sum (int x, int y) {
int result = x +y;
return result; }
0
Oh meaning like that
Here is code for cpp ugh java Oh my god I'm just learn cpp damn it! anyway wait ya wait
0
public class Program
{
public static int sum(int x,int y){
return x + y;
}
public static void main(String[] args) {
int a = sum(23455,36546);/*variable for easy to watch*/
System.out.print(a);
}
}