题解列表

筛选

3020: 最大数位置

摘要:``` #include using namespace std; int a[100000],n,maxx,num; int main(){ cin>>n; maxx = -1; ……

判断水仙花

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int n,ge,shi,bai;    //scanf("%d",&n)……

取余操作的运算性质

摘要:参考代码:#include<stdio.h> int main() { int p,m,s=2,r; scanf("%d%d",&p,&m); for(int i=1;i<=p;i++……