分类计算,入门解答,简单易懂(C++)
摘要:解题思路:把题目读清楚,然后通过分类if,else求解注意事项:基础知识的应用和把握参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d……
分类计算-题解(C++清晰解法)
摘要:C++
大家笑纳
```cpp
#include
using namespace std;
int main()
{
int a, b,c,h;//c为平方和//h为和。
……
新手编写,请批评指正
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int a,b,t=0; scanf("%d%d",&a,&b);……
1978: 分类计算
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int a,b……
分类计算-题解(C++代码)
摘要:不会的小伙伴来看看哦,这题不难,希望对你们有帮助。
#include
using namespace std;
int main()
{
int ……
1978: 分类计算
摘要:无脑打印。#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin >> a >> b;……
分类计算-题解(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(……
1978: 分类计算
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long b,a;int main(){ cin>>a>>b; ……
1978: 分类计算。输出时用?:判断
摘要:解题思路:输出时用?:判断注意事项:参考代码:#include <stdio.h>
int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%……