#9861: 少一個點


a1472586266747 (eee)

學校 : 國立鳳山高級中學
編號 : 34077
來源 : [120.127.170.71]
最後登入時間 :
2018-01-03 09:25:34
c045. 00490 - Rotating Sentences -- UVa490 | From: [49.219.168.171] | 發表日期 : 2015-05-25 12:24

第 1 測資點(0%): WA (line:5) 
答案不正確
您的答案為: tcnrrnpertzow am BiierHo e hieh tr ,U tu rsethcotfni.fmfntagohdnhsd Secati 正確答案為: tcnrrnpertzow am BiierHo e.hieh tr ,U tu rsethcotfni.fmfntagohdnhsd Secati 
---------------------------------------------------------------------------------------------------------------------
 
#include <iostream>
#include <algorithm>
#include <string.h>
#include <string>
#include <map>
#include <vector>
#include <math.h>
#include <iomanip>


using namespace std;

int main()  
char s[200][200]={0};
int c=0;
int m=0;
while(cin.getline(s[c],200))
{
int a=0;
a=strlen(s[c]);
m=max(m,a);
if(m>a)
{
for(int i=a-1;i<m;i++)
s[c][i]=' ';
}
c++;
}

for(int i=0;i<m;i++)
{
for(int j=c;j>=0;j--)
{
cout<<s[j][i];
}
cout<<endl;
}

  return 0 ;   
__________________________________________________________
正確答案還多了一個點
希望高手幫忙 
 
#9862: Re:少一個點


a1472586266747 (eee)

學校 : 國立鳳山高級中學
編號 : 34077
來源 : [120.127.170.71]
最後登入時間 :
2018-01-03 09:25:34
c045. 00490 - Rotating Sentences -- UVa490 | From: [49.219.168.171] | 發表日期 : 2015-05-25 12:37

第 1 測資點(0%): WA (line:5) 
答案不正確
您的答案為: tcnrrnpertzow am BiierHo e hieh tr ,U tu rsethcotfni.fmfntagohdnhsd Secati 正確答案為: tcnrrnpertzow am BiierHo e.hieh tr ,U tu rsethcotfni.fmfntagohdnhsd Secati 
---------------------------------------------------------------------------------------------------------------------
 
#include
#include
#include
#include
#include
#include
#include
#include


using namespace std;

int main()  
char s[200][200]={0};
int c=0;
int m=0;
while(cin.getline(s[c],200))
{
int a=0;
a=strlen(s[c]);
m=max(m,a);
if(m>a)
{
for(int i=a-1;i
s[c][i]=' ';
}
c++;
}

for(int i=0;i
{
for(int j=c;j>=0;j--)
{
cout<
}
cout<
}

  return 0 ;   
__________________________________________________________
正確答案還多了一個點
希望高手幫忙 
for(int i=a-1;i<m;i++)
s[c][i]=' ';
把a-1改成a就行了
 


 
ZeroJudge Forum