题解列表
平方和与立方和C++超简单
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,x,y; while(scanf("%d%d……
数列有序C++超简单!
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,a[101]; while(cin>>n>>……
数列问题C++超简单
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; int a[36]; a[1]=3;a[2]=……
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)另类版
摘要:解题思路:i作为输入,j用来求算出位数k求算出他的倒序数组a是用来取各个位数最后按指定格式输出。注意事项:注意换行的位置!!!参考代码:#include<stdio.h>int main() { in……
1008: [编程入门]成绩评定
摘要:import java.io.*;
/*
* if 语句基础题
* */
public class Main {
public static BufferedReader i……
小南解题-多项式输出
摘要:#代码量有点长,但是思路简单、易于理解参考代码:#输入a=int(input())bb=list(map(int,input().strip().split()))#列一个表,存储多项式的次方s=bb……
敲七游戏C++(没对的进来)
摘要:解题思路:不对的99%都是漏了带有7的数字首先是7的倍数,n%7就可以得出;个位:只有7且恰好是7的倍数;十位:x7、7x(以下x均表示任意1-9) x7可以求末尾就行n%10=……
LULU——题解 1012: [编程入门]字符串分类统计
摘要:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int main(){ int num=0,lette……