【题意简述】:计算两数相加,有多少个进位。
【分析】:很简单,不过还是要注意输出的细节。当进位为1时,输出的operation,没有s。
详见代码:
// 216K 0Ms
#include
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
{
if(a == 0&&b == 0) break; // ...
分类:
其他好文 时间:
2014-09-23 22:46:05
阅读次数:
174
变量交换变量 3.1 通过中间变量 3.2 两数相加,减某一个数
值类型变量(int,bool等)如果作为类的全局变量,会有默认值,但如果作为局部变量,则必须手动赋值代码规范 1.注释
2.骆驼(camel)命名,第一个单词首字母小写,之后单词首字母大写 3.帕斯卡(pascal)命名,所有...
分类:
其他好文 时间:
2014-06-02 01:31:16
阅读次数:
353
[ 问题: ]
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the ta...
分类:
其他好文 时间:
2014-05-15 00:04:39
阅读次数:
377