0% found this document useful (0 votes)
17 views

Assignment-2

mide

Uploaded by

carstaslih
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

Assignment-2

mide

Uploaded by

carstaslih
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

OSTIM Techincal University

CENG-109(105) Programming and Computation I

Assignment 2

1 - Write a C program which prints the following table:

1 2 3 4 5 6 7 8 9

1 1 2 3 4 5 6 7 8 9

2 2 4 6 8 10 12 14 16 18

3 3 6 9 12 15 18 21 24 27

4 4 8 12 16 20 24 28 32 36

5 5 10 15 20 25 30 35 40 45

6 6 12 18 24 30 36 42 48 54

7 7 14 21 28 35 42 49 56 63

8 8 16 24 32 40 48 56 64 72

9 9 18 27 36 45 54 63 72 81

In the above table the cell at the intersection of each row and column contains the product of their indices as it is
shown above: the intersection of the 2nd row and the 8th column contains 2*8 = 16. Following is an example
output:

Write two versions of the same program: 1 - using nested for loops, 2 – using nested while loops.

2 – Modify the program you wrote above such that the intersections of the rows and columns contain:

a. the remainder of the row index / column index, if row index > column index
b. the floor of the square root of the row index * column index, if row index = column index
c. the absolute value of the row index – column index, if row index < column index.

You might also like