Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Cám ơn bản. Đúng là quyển này nhưng bị thiếu. Theo file PDF thì quyển này xuất bản năm 2014 có tất cả 180 ván. Còn file trên nó có khoảng 40 ván thôi.Bạn xem phải quyển này không: http://www.mediafire.com/download/0sd0xjtq7tg57y8/Bo_cuc_phi_dao_ham_tinh_-_Duong_Dien.cbl
Trên Appstore có mà, bạn thử xem http://xb-xiangqi-chess-database-browser.appstor.io/fr https://itunes.apple.com/vn/app/xb-xiangqi-chess-database/id539124660?l=vi&mt=8Bác nào có biết phần mềm XB trên IOS dành cho Iphone, Ipad ko ạ. Cho tôi xin với vì ko hiểu sao dạo này tìm trên Appstore ko có. Cám ơn mọi người nhiều.
Bạn xem hướng dẫn ở trang này,đừng gởi nội dung mà không có chủ đề Link http://ccxiqi.forumvi.com/t286-topicCó bác nào biết cách làm Ebook CBL từ các file pgn thì chỉ giùm em với. Thx.
#include <conio.h>
#include<stdio.h>
#include <iostream>
using namespace std;
int g[20][20],n,v[20];
FILE *fptr;
int Init_Graph(char *path)
{
int i,j;
fptr=fopen(path,"r");
if(fptr==NULL)
{
cout<<("Error");
return 1;
}
fscanf(fptr,"%d",&n);
for(i=1;i<=n;i++)
for(j=1;j<=n;j++) g[i][j]=0;
while(!feof(fptr))
{
fscanf(fptr,"%d",&i);
fscanf(fptr,"%d",&j);
fscanf(fptr,"%d",&g[i][j]);
g[i][j]=gp[i][j];
}
fclose(fptr);
return 0;
}
void View_Graph(int g[20][20],int n)
{
int i,j;
printf("So dinh: %d\n",n);
printf("Ma tran ke:\n\n");
for(i=1;i<=n;i++){
for(j=1;j<=n;j++)
printf("%d\t",g[i][j]);
printf("\n \n");
}
}
void Vetexs(int g[20][20],int v[20],int n)
{
int i,j;
for(i=1;i<=n;i++)
{
v[i]=0;
for(j=1;j<=n;j++)
v[i]=v[i]+g[i][j];
v[i]=v[i]+g[i][j];
printf("deg(%d)=%d\t",i,v[i]);
}
}
int main()
{
int i;
if(!Init_Graph("Graph.INP")) View_Graph(g,n);
printf("Bac dinh:\n");
Vetexs(g,v,n);
}