题解 1951: 求平方和

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

筛选

题解 1951: 求平方和(简单易懂版)

摘要:解题思路:输入两个整数a和b输出时以a*a+b*b定义结果注意事项:注意格式规范,避免使用中文字符这个题很简单,适合新手宝宝练手参考代码:#include<stdio.h> int main() ……

求平方和简单写法

摘要:参考代码:#include<stdio.h>#include<math.h>int main(){ int a=3; int b=4;    scanf("%d%d",&a,&b);    print……

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

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

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

摘要:解题思路:平方可想到用这2种方法:直接计算平方或用pow()函数注意事项:如果用pow()记得加入头文件math.h,但该题直接计算即可。参考代码:#include<stdio.h>int main(……

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

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

求平方和题解

摘要:解题思路:就个输入输出!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ scanf("%d%d",……

求平方和(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    cin>>a>>b;    cout<<……