题解 1755: 姓名排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

姓名排序 题解(超简单的)

摘要:解题思路:这题就用字符串数组排序就欧了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n,m;string s[1005];in……

C语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int n, m,i,j;    char name[11][21];……