R_Prac-1.r (255B)
1 # Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 25 Mar 2026 2 # Repo: https://github.com/notamitgamer/bsc 3 # License: MIT 4 5 # Write a R program to print numbers from 1 to 5. 6 7 i = 1 8 while(i <= 5) { 9 print(i) 10 i = i + 1 11 } 12 # or we can use 13 print(1:5)