新手求助:C++编程,怎么输出下划线

如题所述

第1个回答  2017-02-01
printf("________")
第2个回答  2017-02-02
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<'_';
return 0;
}
相似回答