输入字符串,然后输出前3个字符,要求占6列,右对齐。
格式
输入格式:输入字符串
输出格式:输出字符串
样例
输入:Wendy
输出: Wen
#include<bits/stdc++.h>
using namespace std;
int main( )
{
char s[100];
gets(s);
printf("%6.3s",s);
return 0;
}
输入字符串,然后输出前3个字符,要求占6列,右对齐。
格式
输入格式:输入字符串
输出格式:输出字符串
样例
输入:Wendy
输出: Wen
#include<bits/stdc++.h>
using namespace std;
int main( )
{
char s[100];
gets(s);
printf("%6.3s",s);
return 0;
}