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

资源简介

C++实战源码-获取用户输入的用户名(入门级实例036).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “iostream.h“
#include 
#include “string.h“
int main()
{
char Username[10];
char Password[10];
cout << “请输入用户名:\n“;
cin >> Username;
cout << “请输入密码:\n“;
cin >> Password;
cout << “╔═════════════════╗\n“;
cout << “║              登录框              ║\n“;
cout << “╠════════╦════════╣\n“;
cout << “║   用户名:     ║      “ << Username << setw(13-strlen(Username)) << “║\n“;
cout << “╠════════╬════════╣\n“;
cout << “║   密  码:     ║      “ << Password << setw(13-strlen(Password)) << “║\n“;
cout << “╚════════╩════════╝\n“;
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         786  2010-07-23 15:13  GetName\GetName.cpp
     文件        4548  2010-07-23 13:41  GetName\GetName.dsp
     文件         539  2010-07-23 13:41  GetName\GetName.dsw
     文件         294  2010-07-23 13:41  GetName\StdAfx.cpp
     文件         769  2010-07-23 13:41  GetName\StdAfx.h

评论

共有 条评论