Skip to main content

Posts

Showing posts with the label area

Featured Post

Data Mining with Weka -Installation

Weka - Data mining Tool W eka is a tool for big data and data mining. It is used to various classification, experiments, and analysis over large data sets. Installation Guide -weka  You can download Weka from   here   and follow the normal installation procedure. After completion you will get following window, here you can begin your classification or experiment on different data sets with Weka.

Program (Sequence) - Area and Volume

3.Write a Program  Asking length (L), Breadth (B) and Height (h) of a room. Calculate ITS Area of Floor (af), Area of Wall (AW) and Volume (V). #include <stdio.h> #include <conio.h> void main () {   int l, b, h, af, aw, v;   printf ("Enter Length, Breadth and Height:");   scanf ("% d% d% d", & l, & b, & h);   af = l * b;   aw = 2 * h * (l + b);   v = l * b * h;   printf ("Area of ​​floor =% d \ n", af);   printf ("Area of ​​wall =% d \ n", aw);   printf ("Volume of a room =% d", v);   getch (); }