Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 262 Bytes

File metadata and controls

18 lines (15 loc) · 262 Bytes

Function Examples

  • yards to feet, ounces etc
  • after floats, f2c, yards to meters etc
  • area of square, triangle, circle etc (after floats)
  • boolean combinations from codingbat

Examples for video:

int a;
a=10;
a=5;
a;

int b=20;
b=a+1;

a=2*b;