10055
关键句:The input numbers are not greaterthan232
注意事项:不可以用unsigned int,其表示范围为0~232 -1。
494
数单词题目;
注意事项:善用<ctype>中的isdigit()判断。
490
将段落旋转90度输出
注意事项:第7行声明了i,作为行索引,但最好养成习惯,ijk这类常用计数字母仅在for循环内计数用,不然容易引发混乱。如本代码中,i的作用域不仅限于循环,下文再使用i时容易引发歧义。
#include
#include
using namespace std;
#define maxn 105
int main(){
string M[105];
int i=0;
int length=0;
int index[105];
while(getline(cin,M[i])){
if(M[i].size()>length)
length=M[i].size();
i++;
}
i--;
for(int j=0;j<=length;j++){
for(int index=i;index>=0;index--){
if(j>=M[index].size())
cout<<" ";
else
cout<