POJ1050总结

To the Max 题目来源 Description Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1*1 or greater located within the whole array. The sum […]

POJ1018总结

Communication System 来源点这 Description We have received an order from Pizoor Communications Inc. for a special communication system. The system consists of several devices. For each device, we are free […]

Java安卓学习总结(二)

探索过程 今天简单体验了一下布局界面XML,然后照例是发现了一些问题。 首先是如下图所示的,graphical layout没有显示的问题。 网上都说是因为ADT(Android Developer Tools)版本太落后于SDK,果然我将SDK换成Android 5就可以了。 但是我记得我之前下载的已经是可以下载到的最新的版本了。 于是又上网搜了一下最新的ADT的版本,貌似已经有24.0.2的版 […]

比较运算符 Comparison Operators

本篇将会介绍不同的比较操作符,如 ==,!=,>,< 等等,它们可以在C++中使用,以及应用于那些数据。 顾名思义,条件语句指定是否应该执行另一个语句或语句块。这些通常被称作 “ 选择结构 ” 。这两种类型是: “if…then” “switch…case” 不过需要注意:这里没有涉及到 循环 ,但是条件语句涉及到 循环。 比较运算符的语法 测试条件是使用比较运算符指定的。这些操作符导 […]