CS201P Problem Statement
CS201P Problem Statement
Topics Covered:
Functions
Repetition Structure (Loop)
Problem Statement:
Write a program in which you have to define a function displayDiagnol which will have two
integer arguments named rows and cols. In the main function, take the values of rows and
columns from the users. If the number of rows is same as numbers of columns then call the
displayDiagnol function else show a message on screen that number of rows and columns is not
same.
The function will take the value of rows and cols which are passed as argument and print the
output in matrix form. To print the values in the matrix form, nested loops should be used. For
each loop, you have to use a counter variable as counter. When the value of counters for each
loop equals, then it prints the value of row at that location and prints hard coded zero at any other
location.
Example if the user enters rows and cols as 3, then the output should be like this
100
020
003
int main(){
rows = 0;
columns = 0;
cin>> rows;
cin>> columns;
if(rows == columns)
else
return 0;
}
// function definition
if(i==j)
else
cout<< "\n";
Lab # 2
Topics Covered:
“Calculate the average age of a class of ten students using while loop. Prompt the user to enter
the age of each student.”
We need 10 values of variable age of int type to calculate the average age.
int age;
“Prompt the user to enter the age of each student” this requires cin>> statement.
For example:
cin>> age;
Average can be calculated by doing addition of 10 values and dividing sum with 10.
Solution:
#include<iostream>
main() {
int age=0;
int ageCounter=0;
cin>>age;
TotalAge = TotalAge + age;
AverageAge = TotalAge/10;
Lab # 1
Topics Covered:
Variables
Data Types
Arithmetic Operators
Precedence of Operators
Problem Statement:
“Calculate the average age of a class of ten students. Prompt the user to enter the age of each
student.”
“Prompt the user to enter the age of each student” this requires cin>> statement.
For example:
cin>> age1;
Average can be calculated by doing addition of 10 variables and dividing sum with 10.
TotalAge = age1 + age2 + age3 + age4 + age5 + age6 + age7 + age8 +age9 + age10 ;
Solution:
#include<iostream>
main() {
int age=0;
for(int i = 1;i<=10;i++)
cin>>age;
TotalAge += age;
AverageAge = TotalAge/10;