题解 1951: 求平方和(简单易懂版) 摘要:解题思路:输入两个整数a和b输出时以a*a+b*b定义结果注意事项:注意格式规范,避免使用中文字符这个题很简单,适合新手宝宝练手参考代码:#include<stdio.h> int main() …… 题解列表 2024年03月08日 1 点赞 0 评论 262 浏览 评分:9.9
求平方和简单写法 摘要:参考代码:#include<stdio.h>#include<math.h>int main(){ int a=3; int b=4; scanf("%d%d",&a,&b); print…… 题解列表 2023年10月16日 0 点赞 0 评论 478 浏览 评分:9.9
求平方和-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2019年12月22日 0 点赞 0 评论 900 浏览 评分:9.9
求平方和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void) { int A, B; scanf("%d %d", &A, &B); print…… 题解列表 2021年02月20日 0 点赞 1 评论 934 浏览 评分:9.9
求平方和-题解(C语言代码) 摘要:解题思路:平方可想到用这2种方法:直接计算平方或用pow()函数注意事项:如果用pow()记得加入头文件math.h,但该题直接计算即可。参考代码:#include<stdio.h>int main(…… 题解列表 2020年08月28日 0 点赞 0 评论 840 浏览 评分:9.5
求平方和-题解(C语言代码) 摘要:解题思路: 本题只需用scanf()函数获取两个数(A和B),再用printf()函数输出两数的平方和即可。 注意事项: scanf()函数中的&不要忘记输。 参考代码: ```c …… 题解列表 2020年07月04日 0 点赞 0 评论 814 浏览 评分:9.1
求两数平方和并输出 摘要:```c #include int main() { int A,B; scanf("%d%d",&A,&B); printf("%d",A*A+B*B); …… 题解列表 2021年10月27日 0 点赞 0 评论 677 浏览 评分:9.0
求平方和题解 摘要:解题思路:就个输入输出!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ scanf("%d%d",…… 题解列表 2022年04月30日 0 点赞 0 评论 392 浏览 评分:9.0
求平方和(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2022年11月03日 0 点赞 0 评论 365 浏览 评分:9.0