将输入字符串中的字符按如下规则排序。 规则 1 :英文字母从 A 到 Z 排列,不区分大小写

#include #include using namespace std; int main(){ string input; while(getline(cin,input)) { //getline(cin,input); string temp; for(int i=0;i toupper(temp[j+1])){ char c = temp[j]; temp[j] = temp[j+1]; temp[j+1] = c; } } } int k = 0; for(int i=0;i

你可能感兴趣的:(C++)