Computer Applications
Write the code to print following patterns
(i)
1
2 6
3 7 10
4 8 11 13
5 9 12 14 15
(ii)
A A A A A
A A A B B
A A C C C
A D D D D
E E E E E
Java
Java Nested for Loops
6 Likes
Answer
public class KboatPattern
{
public static void main(String args[]) {
System.out.println("Pattern 1");
for (int i = 1; i <= 5; i++) {
int x = 4;
System.out.print(i + " ");
int t = i;
for (int j = 1; j < i; j++) {
t += x;
System.out.print(t + " ");
x--;
}
System.out.println();
}
System.out.println();
System.out.println("Pattern 2");
char ch = 'A';
for (int i = 1; i <= 5; i++) {
for (int j = 4; j >= i; j--) {
System.out.print("A ");
}
for (int k = 1; k <= i; k++) {
System.out.print(ch + " ");
}
System.out.println();
ch++;
}
}
}
Output
Answered By
5 Likes
Related Questions
Write a program to accept name and total marks of N number of students in two single subscript arrays name[ ] and totalmarks[ ].
Calculate and print:
(i) The average of the total marks obtained by N number of students.
[average = (sum of total marks of all the students)/N]
(ii) Deviation of each student's total marks with the average.
[deviation = total marks of a student - average]Define a class to accept the elements of an array from the user and check for the occurrence of positive number, negative number and zero.
Example
Input Array: 12, -89, -56, 0, 45, 56
Output:
3 Positive Numbers
2 Negative Numbers
1 ZeroDefine a class Anagram to accept two words from the user and check whether they are anagram of each other or not.
An anagram of a word is another word that contains the same characters, only the order of characters is different.
For example, NOTE and TONE are anagram of each other.Define a class to accept a number and check whether the number is valid number or not. A valid number is a number in which the eventual sum of digits of the number is equal to 1.
e.g., 352 = 3 + 5 + 2 = 10 = 1 + 0 = 1
Then 352 is a valid number.