格式问题,大家帮我看看
杭电 2716 [url]http://acm.hdu.[/url]
我的代码:
程序代码:
#include "iostream" #include "string" //#include "fstream" using namespace std; int main(int argc, char* argv[]) { //ifstream cin("aaa.txt"); char a[27] = "abcdefghijklmnopqrstuvwxyz"; char b[26]; char c[100]; while (cin.getline(b,27)) { cin.getline(c,80); char d[26],e[26]; for (int t = 0 ; t < 26 ; ++t ) { d[t] = b[t] - 32 ; e[t] = a[t] - 32 ; } for (int i = 0 ; i < strlen(c) ; ++i ) { if (c[i] == ' ') { cout<<" "; ++i ; } for (int j = 0 ; j < 26 ; ++j ) { if (c[i] == a[j]) { cout<<b[j]; j = 27 ; } if (c[i] == e[j]) { cout<<d[j]; j = 27 ; } } } printf("\n"); } return 0; }后来 说 Presentation Error
不知道哪里的格式错了