1978: 分类计算 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split()) if a**2+b**2>100: print(a**2+b**2) else: p…… 题解列表 2022年01月01日 0 点赞 0 评论 240 浏览 评分:0.0
分类计算-题解(C语言代码)加油!!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; scanf("%d%d",&a,&b); c=a*a+b*b; d=a+b; if(…… 题解列表 2020年12月01日 0 点赞 0 评论 242 浏览 评分:0.0
1978——————分类计算 摘要: a,b = map(int,input().split()) sum = a + b square = pow(a,2) + pow(b,2) if square…… 题解列表 2022年07月08日 0 点赞 0 评论 115 浏览 评分:0.0
1978: 分类计算。输出时用?:判断 摘要:解题思路:输出时用?:判断注意事项:参考代码:#include <stdio.h> int main(){ int a,b; scanf("%d%d",&a,&b); printf("%…… 题解列表 2021年03月05日 0 点赞 0 评论 162 浏览 评分:0.0
分类计算 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d\n",(a*a+b*b) > …… 题解列表 2019年02月23日 0 点赞 0 评论 774 浏览 评分:0.0
1978: 分类计算 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int a,b…… 题解列表 2023年10月17日 0 点赞 0 评论 151 浏览 评分:0.0
分类计算-题解(C语言代码) 摘要: #include "stdio.h" int main() { int a,b; scanf("%d%d",&a,&b); if((a*a+b*b)>100) pri…… 题解列表 2020年02月16日 0 点赞 0 评论 468 浏览 评分:0.0
分类计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a,b; scanf("%d%d",&a,&b); if(a*a+b*b>100) { pri…… 题解列表 2020年08月05日 0 点赞 0 评论 187 浏览 评分:0.0
1978: 分类计算 摘要:无脑打印。#include <bits/stdc++.h> using namespace std; int main(){ int a,b; cin >> a >> b;…… 题解列表 2022年02月27日 0 点赞 0 评论 107 浏览 评分:0.0
分类计算-题解(Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); i…… 题解列表 2021年01月26日 0 点赞 0 评论 238 浏览 评分:0.0