fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct str {
  5. int t[3];
  6. char s[3];
  7. };
  8.  
  9. int main() {
  10. str z[3];
  11. for(int i = 0; i < 3; i++)
  12. for(int j = 0; j < 3; j++) {
  13. z[i].s[j] = '0' + i + j;
  14. z[j].t[i] = i + j;
  15. }
  16. cout << z[0].s[1] << z[1].t[2] << z[2].s[0];
  17. return 0;
  18. }
  19.  
  20.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
132