题解 1978: 分类计算

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1978: 分类计算

摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split()) if a**2+b**2>100:     print(a**2+b**2) else:     p……

分类计算 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d\n",(a*a+b*b) > ……

1978: 分类计算

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     int a,b……

分类计算-题解(Java代码)

摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); i……

1978: 分类计算

摘要:无脑打印。#include <bits/stdc++.h> using namespace std; int main(){     int a,b;     cin >> a >> b;……