1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
| #ifndef tables_hpp
#define tables_hpp
#include <string>
std::string tableAdd[10][10]={
{"0","1","2","3","4","5","6","7","8","9"},
{"1","2","3","4","5","6","7","8","9","10"},
{"2","3","4","5","6","7","8","9","10","11"},
{"3","4","5","6","7","8","9","10","11","12"},
{"4","5","6","7","8","9","10","11","12","13"},
{"5","6","7","8","9","10","11","12","13","14"},
{"6","7","8","9","10","11","12","13","14","15"},
{"7","8","9","10","11","12","13","14","15","16"},
{"8","9","10","11","12","13","14","15","16","17"},
{"9","10","11","12","13","14","15","16","17","18"}
};
std::string tableAddRet[10][10]={
{"1","2","3","4","5","6","7","8","9","10"},
{"2","3","4","5","6","7","8","9","10","11"},
{"3","4","5","6","7","8","9","10","11","12"},
{"4","5","6","7","8","9","10","11","12","13"},
{"5","6","7","8","9","10","11","12","13","14"},
{"6","7","8","9","10","11","12","13","14","15"},
{"7","8","9","10","11","12","13","14","15","16"},
{"8","9","10","11","12","13","14","15","16","17"},
{"9","10","11","12","13","14","15","16","17","18"},
{"10","11","12","13","14","15","16","17","18","19"}
};
std::string tableMult[10][10]={
{"0","0","0","0","0","0","0","0","0","0"},
{"0","1","2","3","4","5","6","7","8","9"},
{"0","2","4","6","8","10","12","14","16","18"},
{"0","3","6","9","12","15","18","21","24","27"},
{"0","4","8","12","16","20","24","28","32","36"},
{"0","5","10","15","20","25","30","35","40","45"},
{"0","6","12","18","24","30","36","42","48","54"},
{"0","7","14","21","28","35","42","49","56","63"},
{"0","8","16","24","32","40","48","56","64","72"},
{"0","9","18","27","36","45","54","63","72","81"}
};
std::string tableSous[20][20]={
{"0"},
{"1","0"},
{"2","1","0"},
{"3","2","1","0"},
{"4","3","2","1","0"},
{"5","4","3","2","1","0"},
{"6","5","4","3","2","1","0"},
{"7","6","5","4","3","2","1","0"},
{"8","7","6","5","4","3","2","1","0"},
{"9","8","7","6","5","4","3","2","1","0"},
{"10","9","8","7","6","5","4","3","2","1","0"},
{"11","10","9","8","7","6","5","4","3","2","1","0"},
{"12","11","10","9","8","7","6","5","4","3","2","1","0"},
{"13","12","11","10","9","8","7","6","5","4","3","2","1","0"},
{"14","13","12","11","10","9","8","7","6","5","4","3","2","1","0"},
{"15","14","13","12","11","10","9","8","7","6","5","4","3","2","1","0"},
{"16","15","14","13","12","11","10","9","8","7","6","5","4","3","2","1","0"},
{"17","16","15","14","13","12","11","10","9","8","7","6","5","4","3","2","1","0"},
{"18","17","16","15","14","13","12","11","10","9","8","7","6","5","4","3","2","1","0"},
{"19","18","17","16","15","14","13","12","11","10","9","8","7","6","5","4","3","2","1","0"}
};
#endif |
Partager