题解 1978: 分类计算

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

筛选

1978: 分类计算

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

1978: 分类计算

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

1978: 分类计算

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

新手编写,请批评指正

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

1978: 分类计算

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

1978: 分类计算

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

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……