题解 1978: 分类计算

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

筛选

1978: 分类计算

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

1978: 分类计算

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long b,a;int main(){    cin>>a>>b;   ……

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

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

1978: 分类计算

摘要:参考代码:#include<stdio.h>int main(){    int a,b,c;    scanf("%d %d",&a,&b);    c=a*a+b*b;   if (100<c) ……

1978C语言66good

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

分类计算-题解(C++代码)

摘要:不会的小伙伴来看看哦,这题不难,希望对你们有帮助。 #include using namespace std; int main() { int ……

1978: 分类计算

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