Answer:
Vjfxfffccvvvvvv
Explanation:
Hgvjhgxxgyjjbvccjkn Hugh bună vvvvhg un www buukbbchfcvbvc. Hggvhhvbhchgx
Answer:
import java.util.Scanner;
public class num4 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int size;
do{
System.out.println("Enter size of triangle");
size = in.nextInt();
}while(size<=1 || size>=50);
for(int i = 1; i <= size; ++i) {
for(int j = 1; j <= i; ++j) {
System.out.print("* ");
}
System.out.println();
}
System.out.println();
//Second triangle bottom up
for(int i = size; i >= 1; --i) {
for(int j = 1; j <= i-1; ++j) {
System.out.print("* ");
}
System.out.println();
}
}
}
Explanation:
- Use Scanner class to receive user value for size
- Use a do......while loop to ensure user entered a valid range (1-50)
- Use nested loops to print the first triangle from i = 1
- Print also the second triangle from i = size downwards
Answer:
"Case-Based Reasoning" is the answer for the above question.
Explanation:
- Case-Based Reasoning is a process of decision-making theory in which the new problems were solved based on the previously solved problem.
- It is used in artificial intelligence and robots. This helps to make any AI and robots to do the work and take decisions on its own.
- The theory is used to make any computer that behaves like humans. It can take decisions like a human.
- The above question asked about the method by which the new problem is solved on behalf of the old problem. Hence the answer is "Case-Based Reasoning".
Answer:
yes i do i will tel you if you put brainlist
Explanation: