Giúp chuyển code C nhập password sang code C++

Em chưa rành C++ nên mọi người giúp e chuyển sang c++ với ạ

#include <stdio.h>
#include <string.h>   
 
int main() 
{
 
    // username and password we have
    char username[] = "abcdefghabcdefgh";
    char passwrod[] = "123456789";
 
    char user[50], pass[50]; 
 
    printf("Enter your username: ");
    gets(user);
 
    printf("Enter your password: ");
    gets(pass);
 
    while(strcmp(user, username) != 0 || strcmp(pass, passwrod) != 0) {
        printf("\nusername or passwrod incorrect\n");
 
        printf("Enter your username: ");
        gets(user);
 
        printf("Enter your password: ");
        gets(pass);
    }
 
    printf("Login success!\n");
 
    return 0;
}

Chưa rành thì bỏ thời gian ra học thôi em. Code này cũng chưa có gì là phức tạp cả nên học 1 buổi C++ là chuyển được ngay (trừ khi code này không phải em viết ra và em cũng không biết code C luôn)

2 Likes

This topic was automatically closed after 22 hours. New replies are no longer allowed.

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?