求平方和-题解(C语言代码) 摘要:直接输出即可 #include "stdio.h" int main() { int a,b; scanf("%d %d",&a,&b); printf("%d\n",a…… 题解列表 2020年02月14日 0 点赞 0 评论 315 浏览 评分: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; scanf("%d%d",&A,&B); printf("%d",A*A + B*B); …… 题解列表 2022年05月24日 0 点赞 0 评论 81 浏览 评分: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
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a*a+b*b); re…… 题解列表 2021年08月11日 0 点赞 0 评论 72 浏览 评分:0.0
求平方和-题解(C++代码) 摘要:这个题就是基础题目了 我们可以用 #include 头文件的pow函数直接求出平方和 也可以用 sum = a*a+b*b; 那么就上代码 ```cpp #include…… 题解列表 2019年09月20日 0 点赞 0 评论 1935 浏览 评分:5.2
求平方和-题解(C语言代码) 摘要:#includeint main(){ int a=0,b=0,sum=0; scanf("%d%d",&a,&b;); sum=a*a+b*b; printf("%d",su…… 题解列表 2020年08月06日 0 点赞 1 评论 279 浏览 评分:6.0
求平方和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,s; scanf("%d %d",&i,&j); s=i*i+j*j; …… 题解列表 2019年02月28日 0 点赞 1 评论 527 浏览 评分:6.0
求平方和-题解(C语言代码)简单到爆 摘要:解题思路:建三个变量:a、b、sum。注意事项:sum最好归零,不然可能会bug。具体代码如下↓参考代码:#include<stdio.h>int main(){ int a,b,sum=0; …… 题解列表 2020年08月13日 0 点赞 0 评论 379 浏览 评分:6.0
求平方和-题解(Python代码)python 摘要:```python a,b = map(int,input().split())#输入字符串分割并转化成多个int数值 print(a*a+b*b)#输出平方和emmmmmmmmmmmmmmmm …… 题解列表 2019年11月23日 0 点赞 0 评论 1262 浏览 评分:6.5