题解列表
自定义函数之字符提取
摘要:解题思路:注意事项:参考代码:#include<stdio.h>void yuany(char a[]){ char b[100]; int i,j=0; for(i=0;i<100……
1757: 矩阵对角求和
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main(){ int n, sum=0, num=0; int ar……
1019: [编程入门]自由下落的距离计算(简单的解法)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; double n,m,k=0,num=0; scanf("%lf %lf",&m……
八皇后,来看看吧真的很详细了
摘要:解题思路:特别注意右对角线不能写X-Y哦!n*n的棋盘大小也就是能放n个皇后数组大小要定义30以上哦参考代码:#include"bits/stdc++.h"
using namespace std;……