Popular posts from this blog
ত্রিভুজের ক্ষেত্রফল নির্ণয়ের এলগরিদম ও ফ্লোচার্ট
একটি ত্রিভুজের ক্ষেত্রফল নির্ণয়ের জন্য সি ভাষায় প্রোগ্রামিং
#include<stdio.h> #include<conio.h> main() { Flaot b,h,a; Printf("Enter the base of the Trinangle:"); scanf("%f",&b); Printf("Enter the height of the Trinangle:"); scanf("%f",&h); a=(b*h)/2; printf("Area of the triangle is = %f\n ",a); getch(); } Output Enter the base of the triangle: 23 Enter the height of the triangle: 12 Area of the triangle is = 138.00 Copy This code From here: #include #include main() { Flaot b,h,a; Printf("Enter the base of the Trinangle:"); scanf("%f",&b); Printf("Enter the height of the Trinangle:"); scanf("%f",&h); a=(b*h)/2; printf("Area of the triangle is = %f\n ",a); getch(); }
দিনকে ঘন্টায় প্রকাশের সি প্রোগ্রাম
ReplyDeleteভুল আছে
ReplyDeleteকোথায় ভুল হয়েছে সেটা বলে দিলে ভালো হয়।
DeleteThanks
ReplyDelete