这是C++中用于字符串的程序,该字符串可以接受所有字符,但仅输出字母。如果字母是小写,那么我们应该将它们大写。
#include<iostream>
#include<cstdlib>
#include<cctype>
#include <iomanip>
#include <cstring>
using std :: cin;
using std :: cout;
using std :: endl;
using std::setw ;
const int MAX_STR_LEN=100;
int main()
{
char str1 [MAX_STR_LEN];
int i;
cin >> setw(MAX_STR_LEN) >> str1;
for (int i=0; i <MAX_STR_LEN; i++)
{
if (isalpha(str1[i])) {
if (str1[i]>='A'&& str1[i]<= 'Z')
cout << str1[i];
if (str1[i]>='a'&& str1[i]<= 'z')
{
str1[i]= toupper(str1 [i]);
cout << str1[i];
}
}
}
return EXIT_SUCCESS;
}
这往往可以正常工作,但会给我额外的字母,好像我
俯视的东西。另外,当我只输入数字时
像
PHUYXPU
这样的字母,我没有输入。 最佳答案
for (int i=0; i <MAX_STR_LEN; i++)
这意味着您将迭代该数组的所有100个单元,而与字符串的长度无关。您应该在cin语句之前初始化数组,例如:
for(i=0;i<MAX_STR_LEN;i++)
str1[i] = '\0';
或替换for循环中的条件以仅遍历数组的长度,例如:
for(int i=0;i<strlen(str1);i++) {
//blah blah blah
关于c++ - 从字符串中提取字母并转换为大写?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34825962/