Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Write a program that outputs the sequence of numbers: 1 , 4 , 9 , 1 6 , 2 5 , 3 6 , 4

Write a program that outputs the sequence of numbers: 1,4,9,16,25,36,49,64,81,100,121
public class Main {
public static void main(String[] args){
for(int i=1; i<=11; i++){
System.out.println(i*i);
}
}
}
Write a program for problem #3 that does not use the multiplication operator (*).
(Hint: look at the difference between each number in the sequence of squares...)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions