Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 6

USAMA MEHBOOB ROLL NO 2022F-SE-225

SECTION E
LAB # 2
LOOPS AND LOGIC

OBJECTIVE:
To Study Control and Iteration Statements and Math Classes

LAB TASK
1. Write a program to solve quadratic equation using( if, else-if and else) .
Example:
Input a: 1
Input b: 5
Input c: 1
Expected Output :
The roots are -0.20871215252208009 and -4.7912878474779195

INPUT:

Page | 1
USAMA MEHBOOB ROLL NO 2022F-SE-225
SECTION E
OUTPUT:

2. Write a program to generate Fibonacci hypothesis for 19 generations given below.


0
1
2
3
5
8
13
21
34
55
89
144
233
377
610
987
1597
2584
4181
6765

Page | 2
USAMA MEHBOOB ROLL NO 2022F-SE-225
SECTION E
INPUT:

OUTPUT:

Page | 3
USAMA MEHBOOB ROLL NO 2022F-SE-225
SECTION E

3. Write a program to read salary of an employee and designate according to their salary using
if-else ladder.
Note: 25k-35k Research Assistant
36k-50k Junior Lecturer
51k-65k Lecturer
66k-80k Assistant Professor

INPUT:

OUTPUT:

Page | 4
USAMA MEHBOOB ROLL NO 2022F-SE-225
SECTION E

4. Write a Java program to read a number from the user and print whether it is positive or
negative.
Example:
Input number:
35 Loops and Logic Lab # 2 Object Oriented Programming - OOPs 11
Expected Output:
Number is positive

INPUT:

OUTPUT:

Page | 5
USAMA MEHBOOB ROLL NO 2022F-SE-225
SECTION E

5. Write a program to read 3 integer values and print the greater and lesser number
respectively.
Example:
A=29 B=25 C=72
Output:
Greater number=72 Lesser number=29

INPUT:

OUTPUT:

Page | 6

You might also like