fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int n,m; cin >> n >> m; char c[n][m]; bool First = true ,Second = false;
  8.  
  9. for(int i = 0 ; i < n ; i++){
  10. for(int j = 0 ; j < m ; j++){
  11. if(i%2 != 0 && First ){
  12. c[i][m-1] = '#';
  13. }
  14. else if(i%2 != 0 && Second){
  15. c[i][0] = '#';
  16. }
  17. else c[i][j] = '#';
  18. }
  19. if(i%2 != 0 && First ){
  20. First = false ; Second = true;
  21. }
  22. else if(i%2 != 0 && Second){
  23. First = true ; Second = false;
  24. }
  25. }
  26. for(int i = 0 ; i < n ; i++){
  27. for(int j = 0 ; j < m ; j++){
  28.  
  29. if(c[i][j]=='#') cout <<'#';
  30. else cout<<'.';
  31. }
  32. cout << endl;
  33. }
  34. return 0;
  35. }
Success #stdin #stdout 0s 3100KB
stdin
23 50
stdout
##################################################
.................................................#
##################################################
#.................................................
##################################################
.................................................#
##################################################
#.................................................
##################################################
.................................................#
##################################################
#.................................................
##################################################
.................................................#
##################################################
#.................................................
##################################################
.................................................#
##################################################
#.................................................
##################################################
.................................................#
##################################################