摘要:
新类型矩阵:1 2 3 4 56 7 8 9 1011 12 13 14 1516 17 18 19 20查找一个指定数据是否在矩阵中#include using namespace std;bool Find(int* matrix, int row, int colum, int... 阅读全文
摘要:
#include #include using namespace std;void ReplaceBlank(char* destr, const char* sostr, int sLen);int main(){ string sostr = ""; getline(cin, sostr); ... 阅读全文