码迷,mamicode.com
首页 > 其他好文 > 详细

no.6 字符串和格式化输入/输出

时间:2017-09-26 20:57:29      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:oid   clu   string   first   log   输出   sharp   +++   print   

#include<stdio.h>
#include<string.h>

void main()
{
	char FirstName[40];
	char LastName[40];

	printf("请分别输入你的名字和姓氏:\n");
	scanf("%s",FirstName);
	scanf("%s",LastName);
	printf("+++++++++\n");
	printf("%s,%s\n",FirstName,LastName);
}
//编写一个程序,要求输入名字和姓氏,然后以“名字,姓氏”的格式打印

  

no.6 字符串和格式化输入/输出

标签:oid   clu   string   first   log   输出   sharp   +++   print   

原文地址:http://www.cnblogs.com/ZZiz/p/7598496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!