🔒 Closed Saang lines po nagkamali? programming quiz!

Status
Not open for further replies.
Puro syntax error..Aralin mo lang syntax..mas matututo ka kung makabisado mo syntax..Mas mahirap problem solving kesa syntax analysis.. Good luck!
 
C:
#include <stdio.h>
int main ();
{
 int bal = 10000;
 int pin, choice deposit, withdraw;
printf("enter your four digit pin: ");
 scanf("%d, &pin");
 while (pin == 9999)
 {
 printf("welcome please choose an action: \n");
 printf("1 - balance inquiry\n");
 printf("2 - withdraw\n");
 printf("3 - deposit\n");
 printf("4 - exit\n");
 scanf("%d", &choice);
 if(choice == 1)
 }
 printf("\n your available balance is: %d", bal);
 break:
 {
 else if(choice == 2)
}
 printf("\n enter amount to withdraw: ");
 scanf("%d", &withdraw);
 while (withdraw <== bal)
 {
 bal = bal - withdraw;
 printf("\n withdraw successful, your new balance is: %d \n", $bal);
 break;
 }
 break;
 {
 else if(choice == 3)
 {
 printf("\namount to be deposited: ");
 scanf("%d". &deposit);
 bal = bal + deposit;
 printf("\n your new balance is: %d \n", bal);
 break;
 }
 else if(choice == 4)
 {
 break:
 }
 {
}
 
Screenshot_20210304-001023.webp

Ikaw na bahala ts humanap nyan hahhaa
 
Hindi ako magaling sa C eh pero try mo yan kung nafix ko


[CODE lang="c" title="Answer?"]#include <stdio.h>
int main() {
int bal = 10000;
int pin, choice, deposit, withdraw;
printf("enter your four digit pin: ");
scanf("%d", &pin);
while (pin == 9999)
{
printf("welcome please choose an action: \n");
printf("1 - balance inquiry\n");
printf("2 - withdraw\n");
printf("3 - deposit\n");
printf("4 - exit\n");
scanf("%d", &choice);
if(choice == 1)
{
printf("\n your available balance is: %d", bal);
break;
}
else if(choice == 2)
{
printf("\n enter amount to withdraw: ");
scanf("%d", &withdraw);
while (withdraw == bal)
{
bal = bal - withdraw;
printf("\n withdraw successful, your new balance is: %d \n", bal);
break;
}
}
else if(choice == 3)
{
printf("\n amount to be deposited: ");
scanf("%d", &deposit);
bal = bal + deposit;
printf("\n your new balance is: %d \n", bal);
break;
}
else if(choice == 4)
{
break;
}
}
}[/CODE]
 
Status
Not open for further replies.

About this Thread

  • 11
    Replies
  • 491
    Views
  • 8
    Participants
Last reply from:
iloverhaine

Online now

Members online
293
Guests online
715
Total visitors
1,008

Forum statistics

Threads
2,276,036
Posts
28,967,206
Members
1,232,069
Latest member
eran14
Back
Top