Download presentation
Presentation is loading. Please wait.
Published byKristian Carroll Modified over 9 years ago
1
Creating Table using LOOP By Adnan and M.Qazi Programmers
2
Agenda Introduction Designing Algorithm Flow Chart Coding Testing and Debussing Demonstration
3
Introduction Language Loops syntax Different types of Loops Internet Wikis Blogs Self Assessment
4
Designing Algorithm Pseudo code No of Inputs No of outputs Table through all types of loops Formula for creating table
5
Algorithm of table Enter the number to print the table. Loop will be repeated 10 times. Formula used in loop P=N*K and the values of P,N and K is printed. Step No.3 will be repeated 10 times. End of the loop.
6
Flowchart The pictorial representation of an algorithm is called flowchart. Flowchart symbols. Start /End Flow lines Input/output Processing Decision symbol Connector symbol
7
Flowchart of table start Enter the number N K= 1 to 10 P=N*K Print N,K,P Stop
8
CODING 10 INPUT “ENTER TH NUMBER=“,N 20 FOR K=1 TO 10 30 P=N*K 40 PRINT N “*”,K,”=“,P 50 NEXT K 60 END
9
Testing and Debugging Complete unit testing of a program.
10
Demonstration Output of program. Participants Teachers Students Parents Feedback Blogs Wikis
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.