fork download
  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4.  
  5. int dis[100][100];
  6.  
  7. int main() {
  8. memset(dis, 0x3f, sizeof(dis)); // 將所有元素初始化為大數
  9.  
  10. cout << "dis[0][0] = " << dis[0][0] << endl; // 打印初始化後的值
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
dis[0][0] = 1061109567