我很荣幸,将题解发了上来
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;char s[1001];int main(){ int l,n; ci……
整理药名(C++)简单实用
摘要:代码解析:参考代码:#include <iostream>#include <string>#include <cctype>using namespace std;string formatMedi……
编写题解 2858: 整理药名
摘要:参考代码:#include<bits/stdc++.h>using namespace std;char s[1001];int main(){ int l,n; cin>>n; f……
屎山代码 见谅。欢迎大佬指导优化
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>#include<ct……
2858: 整理药名
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main() { char a[100][100]; // 定义一个二维数组来存储……
解 2858: 整理药名
摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): s = input() s = s.lower() if s[0].isalpha……
编写题解 2858: 整理药名
摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n): a=input() b=[' ' for k in range(len(a)……
2858: 整理药名(java)
摘要:解题思路:注意事项:参考代码:package arrLast;
//题目 2858: 整理药名
import java.util.Scanner;
public class t_2858 {
……
2858: 整理药名
摘要:```
#include
using namespace std;
const int N=110;
char s[N];
int main() {
int t;
cin>>t;
……