摘要: 1、.求以下表达式的值,写出您想到的一种或几种实现方法: 1-2+3-4+……+m 答: int Num = this.TextBox1.Text.ToString() ; int Sum = 0 ; for (int i = 0 ; i < Num + 1 ; i++) { if(... 阅读全文
posted @ 2014-11-12 17:23 九八八五 阅读(613) 评论(2) 推荐(0)
摘要: 1.Given a rectangular (cuboidal for the puritans) cake with a rectangular piece removed (any size or orientation), how would you cut the remainder of ... 阅读全文
posted @ 2014-11-12 09:11 九八八五 阅读(571) 评论(0) 推荐(0)