c语⾔printf打印字符串
格式输出
%s直接打印
%-5.3s :⼩数点前数字表⽰对齐数,±表⽰左右对齐,⼩数点后数字表⽰打印⼏位
#include<iostream>
using namespace std;
int main()
printf怎么输出字符{
printf("%s,%5.3s hehe\n","computer","computer");
printf("%s,%-5.3s hehe\n","computer","computer");
printf("%s,%.3s hehe\n","computer","computer");
return0;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。