题解 1211: 平方和与立方和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

平方和与立方和 (C语言代码)

摘要:解题思路:暴力注意:int在oj一般就是32位,但有可能在别的机器是16位,所以最好改用long 我只是偷懒参考代码:#include <stdio.h> int sq(int x)//平方函数……

可ACAC1111111111111111111111

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { int sum1=0,s……

最复杂的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>long f1(int a){    long y;    y=(long)a*a;    return y;}long f2(int ……