1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<bits/stdc++.h> using namespace std; …… 题解列表 2023年10月15日 0 点赞 0 评论 41 浏览 评分:0.0
1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;long long a,b;int main(){ cin>>a>>b; c…… 题解列表 2022年05月05日 0 点赞 0 评论 206 浏览 评分:0.0
求平方和-题解(C语言代码) 摘要:直接输出即可 #include "stdio.h" int main() { int a,b; scanf("%d %d",&a,&b); printf("%d\n",a…… 题解列表 2020年02月14日 0 点赞 0 评论 317 浏览 评分:0.0
题目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 评论 87 浏览 评分:0.0
1951:求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;scanf("%d%d",&a,&b);c=a*a+b*b;printf("%d",c);re…… 题解列表 2022年04月08日 0 点赞 0 评论 167 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 214 浏览 评分:0.0
求平方和-题解(C语言代码) 摘要:解题思路:这道题很简单,就是输入一个整数然后求平方和,不需要考虑数据类型的转化。注意事项:注意格式参考代码:#include <stdio.h>int main(){ int a, b; scanf(…… 题解列表 2021年02月10日 0 点赞 0 评论 126 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int A,B; scanf("%d%d",&A,&B); printf("%d",A*A + B*B); …… 题解列表 2022年05月24日 0 点赞 0 评论 82 浏览 评分:0.0
求平方和-题解(C语言代码) 摘要:解题思路:输入2个整数,求两数的平方和并输出。这题涉及到加法和乘法运算,当然,也有pow函数求平方的方法可以解答。我们这里先讲最新手的办法。注意事项:参考代码:#include<stdio.h>int…… 题解列表 2020年10月22日 0 点赞 0 评论 218 浏览 评分:0.0
求平方和-题解(C语言代码) 摘要:```c #include #include int main(void) { int a,b; scanf("%d%d",&a,&b); printf("%.0lf",po…… 题解列表 2020年02月29日 0 点赞 0 评论 315 浏览 评分:0.0