You are on page 1of 1

clc; clear all; close all;

disp('Berechnung eines Quadervolumens');

disp('');

t = input ('laenge:');

h = input ('hoehe:');

b = input ('breite');

V = t*b*h;

fprintf('Volumen: %3.3f m^3 \n',V)

You might also like