+ 4
how to create output like this ?
12345 109876 1112131415
10 Respuestas
+ 8
In fact, it is an ad hoc way to do so, dear. you can work on it and make it workable for different inputs.
+ 8
I see that people already posted answers, but here's the one I've worked on.
https://code.sololearn.com/ciO2paW0gWud/?ref=app
+ 6
int n = 15;
for (int i = 1; i <= n; ++i)
{
if (i >= 6 && i <= 10) {
if (i == 6)
System.out.println();
System.out.print(n - i + 1);
if (i == 10)
System.out.println();
}
else
System.out.print(i);
}
+ 2
thanks to everyone
+ 2
thanks @sayan it's work
+ 1
check this out
@ DEEPESH
ENTER TOTAL NUMBER OF LINES..(ROWS)
Then enter how many values in each line.
seperated by enter
like:
5
6
https://code.sololearn.com/cV2I20nMG78z/?ref=app
0
thanks but value of n is user define they may be greater then 15 ...
In output each row have contain 5 value only
0
deepesh check my program again
now give 2 inputs seperated by
enter
like:
5
7
see what happens
- 1
let me know
if u have checked it..
- 1
let me know
if u have checked it