Skip to content

skyleeeeee/Cs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 

Repository files navigation

#include <stdio.h> #include <string.h> #define SIZE 300 #define store 100 #define size 300

int loginANDsignup(); void logout(); void change(char login[], char Fname[],char Lname[],char Pass[], char Email[],char Bank[]); int purchase(); void complete(int balance[], int Totalprice, char bank[], char Bank[]); void del(); int menu();

int main(){ int move, ans; char log[100], Fname[100], Lname[100], Pass[100], Email[100], Bank[100] ; char login[100], char Fname[100],char Lname[100],char Pass[100], char Email[100],char Bank[100]

void loginANDsignup();

int answer; 
ans=menu();
if(ans == 1){
 move=purchase;
    printf("The total price of your purchase is %d", Totalprice);
else if (ans==2);
	change(login, Fname, Lname, Pass, Email,Bank);
else if(ans==3)
	logout();
else if(ans==4)
	del();

return 0 ; }

void loginANDsignup(){

int flag=0,balance,i,conf;

char str[SIZE], usermail[SIZE], userpassword[SIZE], useranswer[SIZE],cont[SIZE],nemail[SIZE],npass[SIZE],nbank[SIZE],nfirst[SIZE],nlast[SIZE],nques[SIZE],nans[SIZE],nbalance[SIZE];

char email[store],first[store],last[store],pass[store],bank[store],question[store],answer[store];

FILE *fptr; FILE *output;

fptr= fopen("database.txt", "r");

if(fptr == NULL){ printf("Error opening file!"); }

printf("Enter your Email: \n"); scanf("%s",usermail);

printf("Enter your Password: \n"); scanf("%s",userpassword); fseek(fptr,0,0);

while(!feof(fptr)){ fscanf(fptr,"%s %s %s %s %s %d %s %s", email, first, last, pass, bank, &balance, question, answer);

if(strcmp(usermail, email)==0 && strcmp(userpassword, pass)==0){
flag=1;
}

}

if(flag==1){
printf("Welcome! \n");
conf = 1;
}
    else if(strcmp(userpassword, pass)!=3 && strcmp(userpassword, pass)!=0){
	printf("The password is incorrect, answer the secret question: %s", question);
    scanf("%s", useranswer);
    if(strcmp(useranswer, answer)==0)
    printf("******You have logged in successfully*******");
    else
    printf("*****You failed at logging in*****");
   
	}

        else if(strcmp(usermail, email)!=0){
        printf("User does not exist, Sign up \n");
        scanf("%s",cont);
        if(strcmp("yes",cont)==0){
            printf("Enter an email: ");
            scanf(" %s",nemail);
            printf("Enter bank account number: ");
            scanf(" %s",nbank);
                if(strcmp(email,nemail)!=0 && strcmp(bank,nbank)!=0){
                    printf("Enter a password: ");
                    scanf(" %s",npass);
                    printf(" Enter first name: ");
                    scanf(" %s",nfirst);
                    printf("Enter your last name: ");
                    scanf("%s", nlast);
                    strcat(nfirst, " ");
                    strcat(nfirst, nlast);
                    printf("Enter your balance: ");
                    scanf(" %d", nbalance);
                    printf("Enter the secret question: ");
                    scanf(" %s", nques);
                    printf("Enter the answer of the question: ");
                    scanf(" %s", nans);
                    for(i = 1;i<SIZE;i++)
                    fprintf(output," %s %s %s %s %s %s %s %s",nemail,nfirst,nlast,npass,nbank,nbalance,nques,nans);
                }
                
                else{
                    printf("Information entered already exists, try a new one");

                }
            }
        }

}

void change( char login[], char Fname[],char Lname[],char Pass[], char Email[],char Bank[] ){ int choice;

printf("Enter the password to re-authenticate :");
scanf("%s", Pass);


if(strcmp(login, Pass )==0){
 
printf("Select the number of information you would like to change: \n");
printf("1. Profile name \n");
printf("2. Password \n");
printf( "3. Email \n");
printf("4. Account number-banking account \n");
   
   scanf("%d", &choice);
   
   switch(choice){
   	
   	case 1:
   		printf("Enter a new profile name: ");
   		scanf("%s", Fname);
   		scanf("%s", Lname);
   		strcat(Fname, " ");
   		strcat(Fname, Lname);
   	case 2:
   		printf("Enter a new password: ");
   		scanf("%s", Pass);
    case 3:
    	printf("Enter a new email: ");
   		scanf("%s", Email);
   	case 4: 
   	printf("Enter a new bank account: ");
   		scanf("%s", Bank);
    
   		}
}
else{
	printf("******Incorrect password******");
}

}

void logout(){ int choice; char ch; FILE *fptr_output; printf("Press 1 if you want to log out."); scanf("%d", &choice); if(choice == 1){ fptr_output=fopen("output.txt", "w"); if(fptr_output==NULL){ printf("Could not access the file");

		}
        while(char ch == fgetc(fptr_output) && fgetc(fptr_output)!= EOF){
            fputc(ch, fptr_output);
        }
    printf("You have logged out of the program successfuly.");
}

}

int purchase(){
char answer[3]; int quantity1=0,quantity2=0,quantity3=0,quantity4=0,quantity5=0; int Totalprice=0; int choice;

do{	
printf("This is the menu of the products. Choose the number of your purchase:\n"
"1. book 200 MAD\n "
"2. skincare 700 MAD\n "
"3. watch 1000 MAD\n "
"4. desk 4000 MAD\n "
"5. laptop 6000 MAD.\n");
scanf("%d", &choice);

    if(choice==1){
    printf("Enter the quantity: ");
    scanf("%d", &quantity1);
    }
    
     if(choice==2){
    printf("Enter the quantity: ");
    scanf("%d", &quantity2);
    } 
    
    if(choice==3){
    printf("Enter the quantity: ");
    scanf("%d", &quantity3);
    } 
    
    if(choice==4){
    printf("Enter the quantity: ");
    scanf("%d", &quantity4);
    } 
    
    if(choice==5){
    printf("Enter the quantity: ");
    scanf("%d", &quantity5);
    }
    
     Totalprice= Totalprice+(quantity1*200)+(quantity2*700)+(quantity3*1000)+(quantity4*4000)+(quantity5*6000);
     
   
    printf("Do you want to make another purchase? If yes type yes, if no type no: ");
   scanf(" %s", answer);
    
   
}while(!strcmp("yes", answer));



 return Totalprice;

}

void complete(int balance[], int Totalprice, char bank[], char Bank[]){

int bal;

if(balance-Totalprice>=0){ balance-=Totalprice; printf("This amount %d of money was retrieved from your bank account. Your bank account is at %d", Totalprice, balance); }

else{ for(int i=0; i<3; i++){ printf("Your account does not have enough money to pay for the purchase you have just made"); printf("Enter another bank account: "); scanf("%s", Bank); printf("Enter a balance:"); scanf("%d", &bal); if(bal-Totalprice>=0){ bal-=Totalprice; printf("This amount %d of money was retrieved from your bank account. Your bank account is at %d", Totalprice, bal); } }

	 printf("Your purchase was dropped");

	Totalprice=0;

} }

void del(){

char curr;
int account_number = 0;
int dele;

FILE* fptr ;
fptr = fopen("database.txt", "r");
if(fptr==NULL)
printf("Could access the file");

curr = gets();
if(curr!=EOF) {
    account_number =1;
}

while(1){
  if(dele != account_number);
    putc(curr, fptr);
    curr = getc(fptr);
    if(curr =='\n')
	 account_number++;
    else if(curr == EOF) 
	break;
	
}
fclose(fptr);

}

int menu(){ int choice; printf("Welcome! PLease choose your next move"); printf("1- Shop Section"); printf("2- Change account information"); printf("3- Log out"); printf("4- Delete account "); scanf(" %s",choice);

  return choice;

} *

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •