• 大小: 2.66KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-判断性别(入门级实例039).zip

资源截图

代码片段和文件信息

// Sex.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“

int main()
{
char name[6];
int sex;
printf(“请输入姓名:\n“);
scanf(“%s“name);
printf(“请输入1或0,1表示男,0表示女:\n“);
scanf(“%d“&sex);
printf(“═══════════════════\n“);
printf(“      姓名:     %s                   \n“name );
printf(“═══════════════════\n“);
char* strSex = (sex == 1) ? “男“ : “女“;
printf(“      性别:     %s                   \n“strSex);
printf(“═══════════════════\n“);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         595  2010-07-30 14:18  Sex\Sex.cpp
     文件        4500  2010-07-26 15:41  Sex\Sex.dsp
     文件         531  2010-07-26 15:41  Sex\Sex.dsw
     文件         290  2010-07-26 15:41  Sex\StdAfx.cpp
     文件         769  2010-07-26 15:41  Sex\StdAfx.h

评论

共有 条评论