Write a script that uses four separate for loops to output the following:
1 2 3 4 5 6 7 8
2 4 6 8 10 12 14 16
3 6 9 12 15 18 21 24
10 9 8 7 6 5 4 3 2 1
complete in python3
for x in range(1,9):
print(x,end=" ")
print(" ")
for x in range(2,17,2):
print(x,end=" ")
print(" ")
for x in range(3,25,3):
print(x,end=" ")
print(" ")
for x in range(10,0,-1):
print(x,end=" ")

Please upvote and comment for doubts
Write a script that uses four separate for loops to output the following: 1 2 3...
Write a Java program that uses nested for loops to print a
multiplication table as shown below.
Make sure to include the table headings and separators as
shown.
The values in the body of the table should be computed using
the values in the heading
e.g. row 1 column 3 is 1 times 3.
* | 1 2 3 4 5 6 7 8 9 4 | 1| 1 2 3 456 7 8 9 2 | 2 4 6.8...
Task 4 Write a script that will print the following table using 2 loops (either for or while) 24 3 6 9 4 8 12 16 5 10 15 20 25
Write a bash shell Script to look like this using C-style nest for loop. | 1 2 3 4 5 6 7 8 9 10 11 12 -----+------------------------------------------------------------ 1 | 1 2 3 4 5 6 7 8 9 10 11 12 2 | 2 4 6 8 10 12 14 16 18 20 22 24 3 | 3 6 9 12 15 18 21 24 27 30 33 36 4 | 4 8 12 16 20 24 28 32 ...
Task 2 Write a shell script program call cal3.sh to do the following. 1. Print the output "you must provide at least one month" when there is no argument 2. Print the calendar with specified month matching the argument when there is one argument $ ./cal3.sh 1 January 2016 Su Mo Tu We Th Fr Sa 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27...
Tab Caps Lock package demonstratione319; // Nested loop: Write a program that results the given output. /* Output: 2*1-2 22-4 2*3-6 2*4=8 2*5=10 2*6=12 2*7-14 2*8=16 2*9-18 3*1-3 3*2-6 3 *3=9.3*4=12 3*5=15 3*6=18 3*7=21 3*8=2 4*1-442-8493-12 4*4=16 4*5=20 4*6=24 4*7-28 4 832 4*9-36 5 1.5 5210 53= 15 5*4=20 5*5=25 56=30 5*7=35 5*8=40 5945 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 6*7=42 6*8=48 6*9=54 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 7*8=56 7*9=63 8*1=8 82=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64...
in Java programming Using IF statement, write a program that prints multiplication table for 1-10. Sample Program Output. 1 2 3 4 5 6 7 8 9 10 1 1 2 3 4 5 6 7 8 9 10 2 2 4 6 8 10 12 14 16 18 20 3 3 6 9 12 15 18 21 24 27 30 4 4 8 12 16 20 24 28 32 36 40 5 5 10 ...
Write a program in C that stores the result of all
multiplications between 1 and 9 in a two-dimensional int array and
then prints the contents of the array to the screen. Also, write
some comments in the code.
Example:
Expected output: 1 4 6 7 8 8 1 12 14 16 18 4 3 6 9 12 15 18 21 24 27 4 8 12 16 20 24 28 32 36 5 1e 15 20 25 30 35 40...
Write a program that produces the following output for a random number of digits on a row and a random number of rows. 1****** 12***** 123**** 1234*** 12345** 123456* 1234567 Write a program that calculates the following series: i=1n(12)n=12+14+18+...+12n (hint: we need to talk about integer division) Use for loops to write a code segment that prints the following output. 1 2 3 4 2 4 6 8 3 6 9 12 4 8 12 16 5 10 15 20
Using java
E6.17 Write a program that prints a multiplication table, like this: 1 2 3 4 56 7 8 9 10 2 4 6 8 10 12 14 16 18 20 3 6 9 12 15 18 21 24 27 30 10 20 30 40 50 60 70 80 90 100
The answer need to write in C programming.
QUESTION 2 Write a program using array to generate a multiplication table based on the user's input. For example if user enter 5 as input then a multiply table for 1 to 5 is printed as output as shown in Figure Q2. There are three main steps in this program which are: Print rows (a) (b) Print columns Print multiplication of data inside table (c) Select C:\example1 \bin\Debuglexample 1.exe enter the value...