Advertisement
LEGEND2004

Template Example

Oct 4th, 2023
724
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int n;  // deyisen yarat
  7.     cin >> n;   // girisi gir
  8.     for(int i = 0; i < n; i++){  // setirlerin nomreleri (yuxaridan asagiya) 0 dan (n - 1) e qeder
  9.         for(int j = 0; j < n; j++){ // sutunlarin nomreleri (soldan saga) 0 dan (n - 1) e qeder
  10.             if((i + j) % 2 == 0) // qanunauygunluq tapib onu yaziriq    mesele E-de setir ve sutun cemi cut olarsa
  11.                 cout << '*';      // eger qanuna uygun olarsa ulduz qoy
  12.             else                    // yoxsa
  13.                 cout << ' ';    // bosluq
  14.         }
  15.         cout << endl;       // her setir bitende yeni setire kec
  16.     }
  17.  
  18.     /*
  19.     Programi yoxlamadan atmayin, if operatorunun icini deyisin baxin program nece isleyecek
  20.     &&(and - ve demekdi) || (or - ve ya demekdi)
  21.     */
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement