How to write c++
Or any program like java
Answers
Answered by
0
I know to write qbasic commands or html not c++ and java
Answered by
0
Answer:
class Pattern
{
public static void main()
{
for(int i=4;i>=1;i--)
{
for(int j=1;j<=i;j++)
{
if(j%2==0)
System.out.print(i+" ");
else
System.out.print((i+1)+" ");
}
System.out.println();
}
for(int i=5,k=69;i>=0;i--,k--)
{
for(int j=1;j<=i;j++)
System.out.print((char)k+" ");
System.out.println();
}
}
}
Similar questions