题解列表

筛选

1008: [编程入门]成绩评定

摘要:import java.io.*; /* * if 语句基础题 * */ public class Main {     public static BufferedReader i……

数列问题C++超简单

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; int a[36]; a[1]=3;a[2]=……

确定不来看看?

摘要:解题思路:把当前月之前天数加起来 再加上当前日期注意事项:日期需要正确输入参考代码:#include <stdio.h>int main(){ int x,y,s=0; scanf("%d%d",&x……

数列有序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,m,x,y; while(scanf("%d%d……

上过小学就会的代码

摘要:解题思路:小学生都会的找规律注意事项:参考代码:n=int(input())a=2b=1d=0for i in  range(n):    c=a/b    d+=c    e=a+b        ……

小写转大写超简单!

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){     char s[81];//保存输入的字符串     ……

很熟悉应该没问题可以可以

摘要:解题思路:海伦公式求解三角形面积,很熟悉的题目,一样样是要用宏定义,VBA语言的题目吧小数输出的格式不会写注意事项:用python球十除以二不是除以三我给记错了,要保留三位小数不懂得格式怎么写参考代码……