#include <iostream> using namespace std; int main() { // "/t"水平制表符,保持输出结果的整齐 cout<<"aaa \thelloworld"<<endl; cout<<"aaaaa \thelloworld"<<endl; cout<<"a \thelloworld"<<endl; return 0; }