Difference between revisions of "Talk:BMI CALCULATOR APPLE //e"

From Free Software Directory
Jump to: navigation, search
(Created page with "THIS IS THE PROGRAM HOW IT IS WRITTEN UNDER DOS 3.3 FOR APPLESOFT 10 PRINT " BMI APPLE II CALCULATOR" 20 PRINT " BY MATTEO TREVISAN" 30 PRINT "...")
 
 
Line 1: Line 1:
 +
This program is free software: you can redistribute it and/or modify
 +
    it under the terms of the GNU General Public License as published by
 +
    the Free Software Foundation, either version 3 of the License, or
 +
    (at your option) any later version.
 +
 +
    This program is distributed in the hope that it will be useful,
 +
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 +
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 +
    GNU General Public License for more details.
 +
 +
    You should have received a copy of the GNU General Public License
 +
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 +
 
THIS IS THE PROGRAM HOW IT IS WRITTEN UNDER DOS 3.3 FOR APPLESOFT  
 
THIS IS THE PROGRAM HOW IT IS WRITTEN UNDER DOS 3.3 FOR APPLESOFT  
  

Latest revision as of 23:48, 2 April 2020

This program is free software: you can redistribute it and/or modify

   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.

THIS IS THE PROGRAM HOW IT IS WRITTEN UNDER DOS 3.3 FOR APPLESOFT

10 PRINT " BMI APPLE II CALCULATOR" 20 PRINT " BY MATTEO TREVISAN" 30 PRINT " 31/03/20" 40 PRINT "" 50 PRINT "" 60 PRINT "INSERT YOUR WEIGHT": INPUT A 70 PRINT "INSERT YOUR HEIGHT": INPUT B 80 PRINT "" 90 C = A / (B*B) 100 PRINT "" 110 PRINT "BMI =": PRINT C 120 PRINT "OVERWEIGHT 25-30, FAT 30-35, OVERFAT 35-40, FATTY >40"



Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the page “GNU Free Documentation License”.

The copyright and license notices on this page only apply to the text on this page. Any software or copyright-licenses or other similar notices described in this text has its own copyright notice and license, which can usually be found in the distribution or license text itself.