题解 2858: 整理药名

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

筛选

我很荣幸,将题解发了上来

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;char s[1001];int main(){    int l,n;    ci……

编写题解 2858: 整理药名

摘要:参考代码:#include<bits/stdc++.h>using namespace std;char s[1001];int main(){    int l,n;    cin>>n;    f……

2858: 整理药名(python)

摘要:解题思路:注意事项:参考代码:n = int(input()) while True: try: s = input() s1 = "" for i in s:   ……

java整理药名

摘要:解题思路:注意事项:参考代码:package nine;import java.util.Scanner;public class 整理药名 {    public static void main(……

整理药名string类方法

摘要:解题思路:先将输入的值全部转换为小写;然后利用substring()方法获取首字母转换为大写;在获取除首字母后的字段注意事项:参考代码:import java.util.Scanner;public ……

整理药名(c语言)

摘要:```c ```c #include #include int main() { int n,i,j,t; scanf("%d",&n); /*输入个数*/ ……

c语言代码解决问题

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

整理药名(C++)简单实用

摘要:代码解析:参考代码:#include <iostream>#include <string>#include <cctype>using namespace std;string formatMedi……