编写题解 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
求平方和 c语言 摘要:解题思路:没有啥思路用手就行。注意事项:注意学好数学反复复习不然你还要去百度差真丢脸。参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d"…… 题解列表 2021年03月01日 0 点赞 0 评论 157 浏览 评分:0.0
关于圆周率的规范使用 摘要:解题思路:对圆周率的一种近似表示,需使用到宏定义,本题需要用到较高近似的圆周率注意事项:C语言中并不识别希腊字符π,要使用圆周率,需要自定义π的变量,并指定近似值。可以使用宏定义的方式,当精度要求不高…… 题解列表 2022年06月25日 0 点赞 0 评论 110 浏览 评分:0.0
求平方和-题解(C语言代码) 摘要:解题思路:输入2个整数,求两数的平方和并输出。这题涉及到加法和乘法运算,当然,也有pow函数求平方的方法可以解答。我们这里先讲最新手的办法。注意事项:参考代码:#include<stdio.h>int…… 题解列表 2020年10月22日 0 点赞 0 评论 218 浏览 评分: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
求平方和题解 摘要:解题思路:easy注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d",a…… 题解列表 2022年01月24日 0 点赞 0 评论 285 浏览 评分: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
求平方和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a,b; scanf("%d%d",&a,&b); printf("%d\n",a*a+b*b)…… 题解列表 2020年08月03日 0 点赞 0 评论 137 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:a = input()b = a.split(" ")c = (int(b[0]) * int(b[0]) + int(b[1]) * int(b[1]))print(c…… 题解列表 2022年06月16日 0 点赞 0 评论 92 浏览 评分:0.0
求平方和-题解(C语言代码) 摘要:#include int main() { int a,b,c,d; scanf("%d%d",&a,&b); //输入两个整数 c=a*a; d=b*b; //分别计算两个整数…… 题解列表 2019年08月18日 0 点赞 0 评论 645 浏览 评分:0.0