编写C程序时,如果要键入密码,并且在屏幕上不应该看到它,或者要打印一个*符号。
例子:
Input : abcdefg
Output : *******
注意:下面的解决方案使用getch(),因为它是非标准函数,因此可能无法在所有编译器上使用。
// C program to print *
// in place of characters
#include
#include
int main(void){
char password[55];
printf("password:\n");
int p=0;
do{
password[p]=getch();
if(password[p]!='\r'){
printf("*");
}
p++;
}while(password[p-1]!='\r');
password[p-1]='\0';
printf("\nYou have entered %s as password.",password);
getch();
}
说明:基本上,它将采用我们通过getch()函数输入的字符并打印*,而不是我们键入的每个字母。
备注:它不在此IDE中运行,请下载此文件并在您的终端中运行。
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。