Calculate square of a number without using *, / and pow()
不使用乘除和pow计算一个数的平方
给定一个整数n,在不使用乘除和pow函数的前提下计算其平方的值。
Examples: Input: n = 5 Output: 25 Input: 7 Output: 49 Input: n = 12 Output: 144
一个直观的解法是重复地向结果加n。下面是该思路的C++实现。
// Simple solution to calculate square without
// using * and pow()
#include<iostream> ...