求教,我觉得,我的没有问题,在VS一直可以运行,到这就运行错误了。 #include<iostream> using namespace std; #include<iomanip> #include<ctype.h> #include<string.h> int main() { char a[10]; gets(a); int j = 0; int k = strlen(a); for ( int i = 0; i < k; i++) { if (isalpha(a[i]) && a[i] != 'z'&&a[i]!='Z') { putchar(a[i] + 1); } else { putchar(a[i]); } } return 0; }
#include <iostream> #include <cstring> #include <cstdio> using namespace std; int main() { int i=0; char str[100]; gets(str); for( i=0;i<strlen(str);i++) if((int) str[i]==32)continue; else str[i]=str[i]+1; cout<<str; return 0; }
小黑鱼王 2020-11-17 22:07:40 |
我这个程序也是百分之50,不知道为什么