题解 1951: 求平方和

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

筛选

求平方和 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){    int k,n,sum;    scanf("%d %d",&k,&n)……

求平方和 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,j,s;    scanf("%d %d",&i,&j);    s=i*i+j*j;    ……

求平方和-题解(C语言代码)

摘要:简单的运算题 分两步 一、获取用户输入的数据A、B 二、显示输出A、B平方和 #include int main(){ int A,……

求平方和-题解(C语言代码)

摘要:解题思路: 本题只需用scanf()函数获取两个数(A和B),再用printf()函数输出两数的平方和即可。 注意事项: scanf()函数中的&不要忘记输。 参考代码: ```c ……