格式化输出
#include <stdio.h>
int main(void)
{
char name[100];
float cash;
printf("输入名字:");
scanf_s("%s",name,100);
printf("输入金额:");
scanf_s("%f", &cash);
printf("The %s family just may be $%.2f richer!\n", name, cash);
system("pause");
return 0;
}
#include <stdio.h>
int main(void)
{
char name[100];
float cash;
printf("输入名字:");
scanf_s("%s",name,100);
printf("输入金额:");
scanf_s("%f", &cash);
printf("The %s family just may be $%.2f richer!\n", name, cash);
system("pause");
return 0;
}
1、f-string简介 python3.6引入了一种新的字符串格式化方式:f-tring格式化字符串。从%s格式化到f
Java中的格式化输入输出
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M