摘要: 41.题目描述 求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。 class Solution { public: int Sum_Solution(int n) { char a[n][n+1]; ret 阅读全文
posted @ 2016-11-19 14:57 于光远 阅读(198) 评论(0) 推荐(0) 编辑