摘要: 三种comments: 1 /* Test program */ 2 3 int main() 4 5 { 6 7 // variable declaration 8 9 int a, b, c; 10 11 /* This is a test 12 13 multiline 14 15 comme 阅读全文
posted @ 2016-03-09 09:47 Dylan_Java_NYC 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 以0.25为例, 0.25 * 100 = 25, 求25 和 100 的最大公约数gcd. 25/gcd 为分子. 100/gcd为分母. 与Fraction to Recurring Decimal类似. 阅读全文
posted @ 2016-03-09 07:31 Dylan_Java_NYC 阅读(1575) 评论(0) 推荐(0) 编辑