1978: 分类计算 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int a,b…… 题解列表 2023年10月17日 0 点赞 0 评论 118 浏览 评分:0.0
1978: 分类计算 摘要:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d",&a,&b); c=a*a+b*b; if (100<c) …… 题解列表 2022年12月24日 0 点赞 0 评论 86 浏览 评分: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 评论 82 浏览 评分:0.0
1978: 分类计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long b,a;int main(){ cin>>a>>b; …… 题解列表 2022年05月17日 0 点赞 0 评论 113 浏览 评分:0.0
新手编写,请批评指正 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int a,b,t=0; scanf("%d%d",&a,&b);…… 题解列表 2022年03月17日 0 点赞 0 评论 204 浏览 评分:6.0
1978: 分类计算 摘要:无脑打印。#include <bits/stdc++.h> using namespace std; int main(){ int a,b; cin >> a >> b;…… 题解列表 2022年02月27日 0 点赞 0 评论 89 浏览 评分:0.0
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 评论 222 浏览 评分:0.0
分类计算,入门解答,简单易懂(C++) 摘要:解题思路:把题目读清楚,然后通过分类if,else求解注意事项:基础知识的应用和把握参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d…… 题解列表 2021年11月02日 0 点赞 0 评论 516 浏览 评分:9.9
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…… 题解列表 2021年11月01日 0 点赞 0 评论 151 浏览 评分:0.0
入门训练 分类计算 摘要:```c #include int main() { int a,b; scanf("%d%d",&a,&b); if((a*a+b*b)>100) p…… 题解列表 2021年10月29日 0 点赞 0 评论 471 浏览 评分:9.9