โค้ด c++ แสดงรายการฝาก-ถอนเงิน bank

กระทู้คำถาม
ไฟล์ .c
#include "stdio.h"
#include "bank_data.h"     <<จะลิงค์กับไฟล์.h
main (){
int total = 10000;
int bank[10][2] = {{1,2500},{1,3500},{2,5000},{1,1000},{2,4000},{2,3000},{2,1500},{1,4000},{1,2000},{2,3000}};
int i,b;
printf("----------------------------------------------\n");
printf("No.\t");
printf("Deposit.\t");
printf("withdraw.\t");
printf("total.\n");
printf("----------------------------------------------\n\t\t\t\t\t");
printf("%d\n",total);
for (i=0;i<10;i++)
{
for(b=0;b<1;b++)
{
    if(bank == 1)
    {
    total=total+bank[b+1];
    printf ("%d\t %d\t\t\t\t %d\n",i+1,bank[b+1],total);
    }
    else if (bank == 2)
    {
    total= total-bank[b+1];
    printf ("%d\t %d\t\t\t\t %d\n",i+1,bank[b+1],total);
    }
    getch();
}
}
}
   .............................................................................................................
ไฟล์ .h

1 คือ เงินฝาก   2. คือ ถอน
#define row 10
#define col 2
int bank[row][col] = {{1,2500},{1,3500},{2,5000},{1,1000},{2,4000},{2,3000},{2,1500},{1,4000},{1,2000},{2,3000}};
................................................................................................................

จะมีไฟล์ 2 ไฟล์เชื่อมกัน
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่