Write a program to find out the Perimeter of a Rectangle Saturday, 5 June 2021, 5:23 PM Number of replies: 40 Permalink In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md. Nure Alom 192-15-2791 - Sunday, 6 June 2021, 12:34 PM Python code to find the Perimeter of a Rectangle Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mehedi Hasan Rabby - Sunday, 6 June 2021, 12:53 PM length = float(input("Enter length: ")) width = float(input("Enter width: ")) perimeter = 2 * (length + width) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by MD RAKIBUL ISLAM(193-15-3015) - Sunday, 6 June 2021, 6:02 PM Write a program to find out the Perimeter of a Rectangle Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Fahim Mahmud 193-15-2939 - Sunday, 6 June 2021, 11:42 PM H=float(input("Enter The Height : ")) W=float(input("Enter The Width : ")) p=(2*(H+W)) print("\nPerimeter of Rectangle : ",p) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Abdul Wahid 193-15-2992 - Monday, 7 June 2021, 12:35 AM Source code:hight=float(input("Enter hight : "))length=float(input("Enter length : "))print("Perimeter of rectangle is :",2*(hight+length)) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mahmuda Akter Lopa 191-15-1030 - Monday, 7 June 2021, 1:09 PM lenght = int(input("enter Lenght:")) breadth= int(input("enter Breadth:")) perimeter = 2 * (lenght + breadth) print(perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Jackson by Jackson Talukder - Monday, 7 June 2021, 1:11 PM l = float(input("Enter the value of length:"))w = float(input("Enter the value of width:"))para = 2*(l + w)print("Parameter of the rectangle is:", para) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Ahmad Umar Mahdi 193-15-1071 - Monday, 7 June 2021, 1:14 PM a = int(input("Enter Length:")) b = int(input("Enter Width:")) print("Parameter is:", 2*(a + b)) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sadnam Saniat 192-15-2794 - Monday, 7 June 2021, 1:17 PM a=c=int(input("a=c=")) b=d=int(input("b=d=")) Perimeter = 2*(a+b) print("Perimeter of rectangle is: ",Perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by MD: AL AMIN PATWARY - Monday, 7 June 2021, 1:17 PM l = float(input("Enter length: ")) w = float(input("Enter width: ")) perimeter = 2 * (l + w) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md.Omer Faruk Tusher 192-15-13122 - Monday, 7 June 2021, 1:18 PM hight=float(input()) length=float(input()) print(2*(hight+length)) 5 4 18.0 Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sabrina Tabassum_193-15-1072 - Monday, 7 June 2021, 1:22 PM lenght = int(input("enter Lenght:")) breadth= int(input("enter Breadth:")) perameter = 2 * (lenght + breadth) print("perameter is :",perameter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mahin Ahmed 191-15-1029 - Monday, 7 June 2021, 1:24 PM X = float(input())Y = float(input())perimeter = 2 * (X + Y)print("Perimeter of the rectangle = ", perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mohaiminul Islam - Monday, 7 June 2021, 1:49 PM ● H=float(input("Enter The Height : ")) W=float(input("Enter The Width : ")) p=(2*(H+W)) print("\nPerimeter of Rectangle : ",p) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by NUSRAT JAHAN (193-15-2924) - Monday, 7 June 2021, 2:25 PM l=float(input("Enter Length : ")) w=float(input("Enter Width : ")) print("Perimeter of Rectangle ,p =",2*(l+w)) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Al Amin 193-15-2981 - Monday, 7 June 2021, 9:50 PM hight=float(input("Enter hight : ")) length=float(input("Enter length : ")) print("Perimeter of rectangle is :",2*(hight+length)) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Al-Ifran (193-15-2915) - Wednesday, 9 June 2021, 9:49 PM Write a program to find out the Perimeter of a Rectangle using python Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sakib Khan Mahin 193-15-3020 - Wednesday, 9 June 2021, 11:35 PM Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Razia Sultana Misu(193-15-2976) - Wednesday, 9 June 2021, 11:57 PM Perimeter of a Rectangle Code: Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by abdullah al taky 193-15-2917 - Thursday, 10 June 2021, 9:41 AM num1=int(input("enter length: "))num2=int(input("enter width: "))result=int(num1+num2)perimeter=int(2*result)print("the perimeter of rectangle is: ",perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Afsana Akter 192-15-2843 - Thursday, 10 June 2021, 9:55 AM find out the Perimeter of a Rectangle Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Samanta Sajjad 193-15-3023 - Thursday, 10 June 2021, 10:13 AM Perimeter of a rectangle Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md.Sabbir Hossain (192-15-2857) - Friday, 11 June 2021, 11:16 PM 192-15-2857 Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Rony Ahmed - Saturday, 12 June 2021, 1:45 PM X=float(input("Enter The Height : ")) Y=float(input("Enter The Width : ")) P=(2*(x+y)) print("\nPerimeter of Rectangle : ",p) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mohammad Imam Hossain 191-15-2437 - Monday, 14 June 2021, 2:08 PM length=float(input("Enter Rectangle length : ")) width=float(input("Enter Rectangle width : ")) print("Perimeter of Rectangle is :",2*(length+width)) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Nazbir Ahmed Niloy(191-15-2742) - Monday, 14 June 2021, 2:16 PM length=float(input("Enter Rectangle length : "))width=float(input("Enter Rectangle width : "))print("Perimeter of Rectangle is :",2*(length+width)) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Ahmed Zobayer Mahim (193-15-2988) - Tuesday, 15 June 2021, 10:07 PM Name: Ahmed Zobayer MahimID: 193-15-2988Section: PC-B Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md.Eamon Rahman (193-15-2967) - Thursday, 17 June 2021, 12:41 AM Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Apel Mahmud (193-15-2984) - Thursday, 17 June 2021, 12:36 PM lenght = int(input("enter Lenght:"))breadth= int(input("enter Breadth:"))perimeter = 2 * (lenght + breadth)print(perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Tamanna Akter (193-15-2937) - Friday, 18 June 2021, 7:54 PM A = float(input())B = float(input())result = 2 * (A+B)print("Perimeter = ", result) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Fahamidur Rahaman(192-15-2863) - Saturday, 19 June 2021, 3:10 PM print("Enter Length of Rectangle: ") l = int(input()) print("Enter Breadth of Rectangle: ") b = int(input()) p = 2*(l+b) print("\nPerimeter = ", p) Permalink Show parent In reply to First post Write a program to find out the Perimeter of a Rectangle by Sadnam Saniat 192-15-2794 - Tuesday, 22 June 2021, 8:43 AM Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sabrina Islam 193-15-2941 - Thursday, 1 July 2021, 12:15 PM Perimeter of a Rectangle Permalink Show parent In reply to Sabrina Islam 193-15-2941 Re: Write a program to find out the Perimeter of a Rectangle by wasiul rashid (192-15-2869) - Thursday, 1 July 2021, 12:27 PM l=float(input("Enter Length : ")) w=float(input("Enter Width : ")) print("Perimeter of Rectangle ,p =",2*(l+w)) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Ata-E-Elahi 193-15-2946 - Monday, 5 July 2021, 8:12 PM height=float(input("Enter height : "))length=float(input("Enter length : "))Rectangle=2*(height+length)print("Perimeter of rectangle is :",Rectangle) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Muhammad Shahedul Islam (193-15-2997) - Tuesday, 6 July 2021, 12:04 PM Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Anik Sheikh (193-15-3000) - Thursday, 5 August 2021, 10:22 AM length = float(input("Enter length: ")) width = float(input("Enter width: ")) perimeter = 2 * (length + width) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Joshinta Jerin - Friday, 6 August 2021, 11:18 AM length = float(input("Enter length: ")) width = float(input("Enter width: ")) perimeter = 2 * (length + width) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md. Jannatul Ferdous 191-15-2497 - Wednesday, 18 August 2021, 4:01 PM lenght = int(input("enter Lenght:")) breadth= int(input("enter Breadth:")) perameter = 2 * (lenght + breadth) print("perameter is :",perameter) Permalink Show parent In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by RIFAT ahmed (193-15-2911) - Thursday, 26 August 2021, 1:16 PM hight=float(input("Enter hight : ")) length=float(input("Enter length : ")) print("Perimeter of rectangle is :",2*(hight+length)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md. Nure Alom 192-15-2791 - Sunday, 6 June 2021, 12:34 PM Python code to find the Perimeter of a Rectangle Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mehedi Hasan Rabby - Sunday, 6 June 2021, 12:53 PM length = float(input("Enter length: ")) width = float(input("Enter width: ")) perimeter = 2 * (length + width) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by MD RAKIBUL ISLAM(193-15-3015) - Sunday, 6 June 2021, 6:02 PM Write a program to find out the Perimeter of a Rectangle Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Fahim Mahmud 193-15-2939 - Sunday, 6 June 2021, 11:42 PM H=float(input("Enter The Height : ")) W=float(input("Enter The Width : ")) p=(2*(H+W)) print("\nPerimeter of Rectangle : ",p) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Abdul Wahid 193-15-2992 - Monday, 7 June 2021, 12:35 AM Source code:hight=float(input("Enter hight : "))length=float(input("Enter length : "))print("Perimeter of rectangle is :",2*(hight+length)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mahmuda Akter Lopa 191-15-1030 - Monday, 7 June 2021, 1:09 PM lenght = int(input("enter Lenght:")) breadth= int(input("enter Breadth:")) perimeter = 2 * (lenght + breadth) print(perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Jackson by Jackson Talukder - Monday, 7 June 2021, 1:11 PM l = float(input("Enter the value of length:"))w = float(input("Enter the value of width:"))para = 2*(l + w)print("Parameter of the rectangle is:", para) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Ahmad Umar Mahdi 193-15-1071 - Monday, 7 June 2021, 1:14 PM a = int(input("Enter Length:")) b = int(input("Enter Width:")) print("Parameter is:", 2*(a + b)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sadnam Saniat 192-15-2794 - Monday, 7 June 2021, 1:17 PM a=c=int(input("a=c=")) b=d=int(input("b=d=")) Perimeter = 2*(a+b) print("Perimeter of rectangle is: ",Perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by MD: AL AMIN PATWARY - Monday, 7 June 2021, 1:17 PM l = float(input("Enter length: ")) w = float(input("Enter width: ")) perimeter = 2 * (l + w) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md.Omer Faruk Tusher 192-15-13122 - Monday, 7 June 2021, 1:18 PM hight=float(input()) length=float(input()) print(2*(hight+length)) 5 4 18.0 Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sabrina Tabassum_193-15-1072 - Monday, 7 June 2021, 1:22 PM lenght = int(input("enter Lenght:")) breadth= int(input("enter Breadth:")) perameter = 2 * (lenght + breadth) print("perameter is :",perameter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mahin Ahmed 191-15-1029 - Monday, 7 June 2021, 1:24 PM X = float(input())Y = float(input())perimeter = 2 * (X + Y)print("Perimeter of the rectangle = ", perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mohaiminul Islam - Monday, 7 June 2021, 1:49 PM ● H=float(input("Enter The Height : ")) W=float(input("Enter The Width : ")) p=(2*(H+W)) print("\nPerimeter of Rectangle : ",p) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by NUSRAT JAHAN (193-15-2924) - Monday, 7 June 2021, 2:25 PM l=float(input("Enter Length : ")) w=float(input("Enter Width : ")) print("Perimeter of Rectangle ,p =",2*(l+w)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Al Amin 193-15-2981 - Monday, 7 June 2021, 9:50 PM hight=float(input("Enter hight : ")) length=float(input("Enter length : ")) print("Perimeter of rectangle is :",2*(hight+length)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Al-Ifran (193-15-2915) - Wednesday, 9 June 2021, 9:49 PM Write a program to find out the Perimeter of a Rectangle using python Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sakib Khan Mahin 193-15-3020 - Wednesday, 9 June 2021, 11:35 PM Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Razia Sultana Misu(193-15-2976) - Wednesday, 9 June 2021, 11:57 PM Perimeter of a Rectangle Code: Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by abdullah al taky 193-15-2917 - Thursday, 10 June 2021, 9:41 AM num1=int(input("enter length: "))num2=int(input("enter width: "))result=int(num1+num2)perimeter=int(2*result)print("the perimeter of rectangle is: ",perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Afsana Akter 192-15-2843 - Thursday, 10 June 2021, 9:55 AM find out the Perimeter of a Rectangle Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Samanta Sajjad 193-15-3023 - Thursday, 10 June 2021, 10:13 AM Perimeter of a rectangle Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md.Sabbir Hossain (192-15-2857) - Friday, 11 June 2021, 11:16 PM 192-15-2857 Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Rony Ahmed - Saturday, 12 June 2021, 1:45 PM X=float(input("Enter The Height : ")) Y=float(input("Enter The Width : ")) P=(2*(x+y)) print("\nPerimeter of Rectangle : ",p) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Mohammad Imam Hossain 191-15-2437 - Monday, 14 June 2021, 2:08 PM length=float(input("Enter Rectangle length : ")) width=float(input("Enter Rectangle width : ")) print("Perimeter of Rectangle is :",2*(length+width)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Nazbir Ahmed Niloy(191-15-2742) - Monday, 14 June 2021, 2:16 PM length=float(input("Enter Rectangle length : "))width=float(input("Enter Rectangle width : "))print("Perimeter of Rectangle is :",2*(length+width)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Ahmed Zobayer Mahim (193-15-2988) - Tuesday, 15 June 2021, 10:07 PM Name: Ahmed Zobayer MahimID: 193-15-2988Section: PC-B Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md.Eamon Rahman (193-15-2967) - Thursday, 17 June 2021, 12:41 AM Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Apel Mahmud (193-15-2984) - Thursday, 17 June 2021, 12:36 PM lenght = int(input("enter Lenght:"))breadth= int(input("enter Breadth:"))perimeter = 2 * (lenght + breadth)print(perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Tamanna Akter (193-15-2937) - Friday, 18 June 2021, 7:54 PM A = float(input())B = float(input())result = 2 * (A+B)print("Perimeter = ", result) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Fahamidur Rahaman(192-15-2863) - Saturday, 19 June 2021, 3:10 PM print("Enter Length of Rectangle: ") l = int(input()) print("Enter Breadth of Rectangle: ") b = int(input()) p = 2*(l+b) print("\nPerimeter = ", p) Permalink Show parent
In reply to First post Write a program to find out the Perimeter of a Rectangle by Sadnam Saniat 192-15-2794 - Tuesday, 22 June 2021, 8:43 AM Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Sabrina Islam 193-15-2941 - Thursday, 1 July 2021, 12:15 PM Perimeter of a Rectangle Permalink Show parent In reply to Sabrina Islam 193-15-2941 Re: Write a program to find out the Perimeter of a Rectangle by wasiul rashid (192-15-2869) - Thursday, 1 July 2021, 12:27 PM l=float(input("Enter Length : ")) w=float(input("Enter Width : ")) print("Perimeter of Rectangle ,p =",2*(l+w)) Permalink Show parent
In reply to Sabrina Islam 193-15-2941 Re: Write a program to find out the Perimeter of a Rectangle by wasiul rashid (192-15-2869) - Thursday, 1 July 2021, 12:27 PM l=float(input("Enter Length : ")) w=float(input("Enter Width : ")) print("Perimeter of Rectangle ,p =",2*(l+w)) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Ata-E-Elahi 193-15-2946 - Monday, 5 July 2021, 8:12 PM height=float(input("Enter height : "))length=float(input("Enter length : "))Rectangle=2*(height+length)print("Perimeter of rectangle is :",Rectangle) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Muhammad Shahedul Islam (193-15-2997) - Tuesday, 6 July 2021, 12:04 PM Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Anik Sheikh (193-15-3000) - Thursday, 5 August 2021, 10:22 AM length = float(input("Enter length: ")) width = float(input("Enter width: ")) perimeter = 2 * (length + width) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Joshinta Jerin - Friday, 6 August 2021, 11:18 AM length = float(input("Enter length: ")) width = float(input("Enter width: ")) perimeter = 2 * (length + width) print("Perimeter of the rectangle = ", perimeter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by Md. Jannatul Ferdous 191-15-2497 - Wednesday, 18 August 2021, 4:01 PM lenght = int(input("enter Lenght:")) breadth= int(input("enter Breadth:")) perameter = 2 * (lenght + breadth) print("perameter is :",perameter) Permalink Show parent
In reply to First post Re: Write a program to find out the Perimeter of a Rectangle by RIFAT ahmed (193-15-2911) - Thursday, 26 August 2021, 1:16 PM hight=float(input("Enter hight : ")) length=float(input("Enter length : ")) print("Perimeter of rectangle is :",2*(hight+length)) Permalink Show parent