Addition and Subtraction
Wed Sep 14 2022 04:02:06 GMT+0000 (Coordinated Universal Time)
Saved by
@cruz
#javascript
public class PlusAndMinus {
public static void main(String[] args) {
int zebrasInZoo = 8;
int giraffesInZoo = 4;
int animalsInZoo = zebrasInZoo + giraffesInZoo;
System.out.println(animalsInZoo);
int numZebrasAfterTrade = zebrasInZoo - 2;
System.out.println(numZebrasAfterTrade);
}
}
content_copyCOPY
Comments