1211基础解法(Python)
摘要:注意事项:用import sys的情况下进行多行输入第一个测试点有问题,但是结果没有错误,所以这两种方式有什么区别呢?参考代码:while True: try: a,b = map……
编写题解 1211: 平方和与立方和
摘要:解题思路:注意事项:参考代码:#include <math.h>
#include <stdio.h>
int main(void) {
long long a, b;
long lo……
1211: 平方和与立方和
摘要:```cpp
#include
using namespace std;
int main()
{
int m,n,a,b;
while(cin>>m>>n)
{……
可ACAC1111111111111111111111
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { int sum1=0,s……
平方和与立方和C++超简单
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,x,y; while(scanf("%d%d……
平方和与立方和题解 c++
摘要:解题思路:
这题不难,主要思路是判断奇偶,然后分别求各个奇数的立方和以及各个偶数的平方和并输出
注意事项:
在新一轮循环前要对m,n清零!!!不然后几组的数据是在前几组数据上进行相加
参考代码……
编写题解 1211: 平方和与立方和
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<math.h>using namespace std;void func(int m……
1211: 平方和与立方和
摘要:解题思路:注意事项:参考代码:while True:
try:
A,B=map(int,input().split())
pin,li=0,0
……