Skip to content

Instantly share code, notes, and snippets.

@lihb
Created May 2, 2014 02:02
Show Gist options
  • Select an option

  • Save lihb/3b2d83145beaa9e1ae25 to your computer and use it in GitHub Desktop.

Select an option

Save lihb/3b2d83145beaa9e1ae25 to your computer and use it in GitHub Desktop.
19以内的两位数的乘法

19以内的两位数的乘法

这个方法是在微信上看到的,据说是印度阿三流行出来的。记录下来 备用。

19×13 = (19+3) × 10 + 9 × 3 = 220 + 27 = 247

16*18 = (16+8) × 10 + 6 × 8 = 240 + 48 = 288

的确很快很好用。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment