12344321
123 321
12 21
1 1 how i print this program??
Answers were Sorted based on User's Feedback
Answer / guest
public class Numbers {
public static void main(String[] args){
int i,j,n=4;
for(i=0;i<=n;i++){
System.out.println();
for(j=1;j<=n-i;j++)
System.out.print(j);
for(j=0;j<2*i;j++)
System.out.print(" ");
for(j=n-i;j>=1;j--)
System.out.print(j);
}
}
}
| Is This Answer Correct ? | 17 Yes | 3 No |
Answer / venkat
#include<stdio.h>
void main()
{
int i,j,k=4,n=4;
for(i=0;i<n;i++)
{
for(j=1;j<=n-i;j++)
{
printf("%d",j);
}
printf(" ");
for(j=0;j<n-i;j++)
{
printf("%d",k-j);
//k--;
}
--k;
printf("
");
}
}
| Is This Answer Correct ? | 7 Yes | 2 No |
package basic_java_examples;
public class Numbers {
public static void main(String[] args){
int i,j,n=4;
for(i=0;i<=n;i++){
System.out.println();
for(j=1;j<=n-i;j++)
System.out.print(j);
for(j=0;j<2*i;j++)
System.out.print(" ");
for(j=n-i;j>=1;j--)
System.out.print(j);
}
}
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / vamsi talapatra
#include<iostream>
using namespace std;
int main(){
int n = 4;
while(n>0){
for(int i = 1; i<=n; i++){
cout<<i;
}
cout<<" ";
for(int i = n; i>0; i--){
cout<<i;
}
n--;
cout<<endl;
}
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sunitha
for(i=1;i<=5;i++)
{
for(j=1;j<=i;i++)
{
for(k=1;k<=j;k++)
printf("%d",k);
k--;
printf("%d",k);
}
}
| Is This Answer Correct ? | 1 Yes | 3 No |
What are the uses of a pointer?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
what is the maximum no. of bytes calloc can allocate
How can I find out how much memory is available?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Where are some collections of useful code fragments and examples?
write a program to find the largest and second largest integer from an array
What is the purpose of sprintf() function?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What is the difference between %d and %i?
How can I access a memory located at certain address?
What is a global variable in c?