编写题解 1951: 求平方和 摘要:解题思路:求两个数的平方和 定义两个变量a,b,再定义一个变量s存放所求的值; 用 scanf 输入变量; …… 题解列表 2024年12月03日 0 点赞 0 评论 141 浏览 评分:0.0
1951:求平方和 摘要:参考代码:#include<stdio.h>#include<math.h>int main(){int a=3;int b=4; scanf("%d%d",&a,&b); printf(…… 题解列表 2024年05月23日 0 点赞 0 评论 204 浏览 评分:9.9
题解 1951: 求平方和(简单易懂版) 摘要:解题思路:输入两个整数a和b输出时以a*a+b*b定义结果注意事项:注意格式规范,避免使用中文字符这个题很简单,适合新手宝宝练手参考代码:#include<stdio.h> int main() …… 题解列表 2024年03月08日 1 点赞 0 评论 261 浏览 评分:9.9
题目1951:求平方和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a,s,d,f;cin >> s;cin >> a;d…… 题解列表 2023年12月05日 0 点赞 0 评论 85 浏览 评分:0.0
求平方和简单写法 摘要:参考代码:#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
1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<bits/stdc++.h> using namespace std; …… 题解列表 2023年10月15日 0 点赞 0 评论 41 浏览 评分:0.0
求平方和代码 摘要:解题思路:注意事项:参考代码:1.#include<stdio.h>int main(){ int A,B; scanf("%d %d",&A,&B); printf("%d",A*…… 题解列表 2023年07月05日 0 点赞 0 评论 267 浏览 评分:9.9
1951 求平方和 题解 摘要:只要用a2+b22就行了参考代码一:#includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a*a+b*b…… 题解列表 2023年02月01日 0 点赞 0 评论 306 浏览 评分:9.9
1951: 求平方和 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; cout…… 题解列表 2023年01月12日 0 点赞 0 评论 766 浏览 评分:9.9