xxxxxxxxxx
22
let x=145;
function setup() {
createCanvas(400, 400);
let y=year();
}
function draw() {
textSize(24);
background(220);
show();
}
function weightCalculation(currentWeight){
return 130-currentWeight;
}
let todayWeight = weightCalculation(x);
function show(){
if(x>130){
text("You are "+ Math.abs(todayWeight)+" pounds overweight!",10,100);}
else{
text("You are "+ Math.abs(todayWeight)+" pounds under",10,100);}}