Advertisement
Nahid8195

Math for CS Presentation

Dec 10th, 2021
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.93 KB | None | 0 0
  1. n = int(input("Enter your last 5 digit of your id: "))
  2.  
  3. ch = ((n%5)+1)
  4.  
  5. if ch ==1:
  6.   print("\nYour presentation Topic is: Graph definition and different types of graph\n")
  7. elif ch == 2:
  8.    print("\nYour presentation Topic is: Different theory of graph\n")
  9. elif ch == 3:
  10.    print("\nYour presentation Topic is: Different relation in graph\n")
  11. elif ch == 4:
  12.    print("\nYour presentation Topic is: POSET and Hasse Digram\n")
  13. elif ch == 5:
  14.    print("\nYour presentation Topic is: Euler Path & Hamilton Path\n")
  15. elif ch == 6:
  16.    print("\nYour presentation Topic is: Dijkstra algorithm with example\n")
  17.  
  18. print("1. Prepare a presentation slide.\n2. Make a presentation video. \n3. Upload both the slide and video in your drive and submit the URL.")
  19. print("4. Presentation Submissiohn link: https://elearn.daffodilvarsity.edu.bd/mod/assign/view.php?id=797496")
  20. print("5. Last date of Submission is 17DECEMBER\n\nThank You & Best of lucks")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement