Search Your Keyword

A One Massage for users

C Program BD say you

Hi, If you are new in our blog and to get support about C program, than you must select your level from right side in this blog.Such as, If you want to learn than you select Entry Level for learning and If you are known the basic of C program than you select Solution Level.


Friday, December 13, 2019

ত্রিভূজের ক্ষেত্রফল নির্ণয়ের ফ্লোচার্ট, অ্যালগরিদম এবং প্রোগ্রাম

ফ্লোচার্ট

অ্যালগরিদম 

প্রোগ্রাম


ধাপ ১: শুরু
#include<stdio.h>
ধাপ ২: ভূমি b,উচ্চতা h এর মান গ্রহণ
#include<conio.h>
ধাপ ৩: area=b*h/2 এর মান নির্ণ
void main()
ধাপ ৪: area এর মান ছাপাই{
ধাপ ৫: প্রোগ্রাম শেষ
  float b, h, area;

  printf("Enter Base:");

   scanf("%f", &b);

   printf("Enter Height:");

   scanf("%f", &h);



  area=b*h/2;


   printf("Area: %f", area);


}

No comments:

Post a Comment