Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- int main()
- {
- int n; // deyisen yarat
- cin >> n; // girisi gir
- for(int i = 0; i < n; i++){ // setirlerin nomreleri (yuxaridan asagiya) 0 dan (n - 1) e qeder
- for(int j = 0; j < n; j++){ // sutunlarin nomreleri (soldan saga) 0 dan (n - 1) e qeder
- if((i + j) % 2 == 0) // qanunauygunluq tapib onu yaziriq mesele E-de setir ve sutun cemi cut olarsa
- cout << '*'; // eger qanuna uygun olarsa ulduz qoy
- else // yoxsa
- cout << ' '; // bosluq
- }
- cout << endl; // her setir bitende yeni setire kec
- }
- /*
- Programi yoxlamadan atmayin, if operatorunun icini deyisin baxin program nece isleyecek
- &&(and - ve demekdi) || (or - ve ya demekdi)
- */
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement