Home
О нас
Products
Services
Регистрация
Войти
Поиск
tournesoul
@tournesoul
June 2022
1
5
Report
Блок схему и текст программы на с++
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
PatifonKakao
#include <cstdlib>
#include <iostream>
using namespace std;
int const n=8;
int r(int i, int j)
{
if(i<n/2)
if (j<n/2)
return 1;
else
return 2;
else
if (j<n/2)
return 3;
else
return 4;
}
int main(int argc, char *argv[])
{
int m[n][n];
for(int i=0; i<n; ++i)
for (int j=0; j<n; ++j)
m[i][j]=r(i,j);
for(int i=0; i<n; ++i){
for (int j=0; j<n; ++j)
cout <<m[i][j]<<" ";
cout <<endl;
}
system("pause");
return EXIT_SUCCESS;
}
3 votes
Thanks 1
More Questions From This User
See All
tournesoul
August 2022 | 0 Ответы
programmu na s dany naturalnoe chislo n dejstvitelnye chisla a1 an pr
Answer
tournesoul
August 2022 | 0 Ответы
napisat programmu na s dany tri storony odnogo i tri storony drugogo treugol
Answer
tournesoul
August 2022 | 0 Ответы
programmu na s sostavit programmu dlya deleniya chisla a na chislo b esli a b
Answer
tournesoul
August 2022 | 0 Ответы
poryadok zapolneniya atomnyh orbitalej soglasno pravila klechkovskogo 1 4s4p4d 2
Answer
tournesoul
August 2022 | 0 Ответы
napisat programmu na s 1 opisat strukturu s imenem train soderzhashuyu sleduyu9fea90885ec989a708c49035c5b4d4df 67774
Answer
tournesoul
July 2022 | 0 Ответы
pomogite s paskalem nuzhno vychislit summu otricatelnyh elementov odnomernogo m
Answer
tournesoul
July 2022 | 0 Ответы
napisat programmu na s kotoraya chitaet s klaviatury stroku simvolov preobraz
Answer
tournesoul
July 2022 | 0 Ответы
napisat programmu na s 1 opisat strukturu s imenem train soderzhashuyu sleduyu
Answer
tournesoul
June 2022 | 0 Ответы
cherez tochku pryamyh 2x y 0 i x3y 10 provedena pryamaya perpendikulyarnaya pryamoj
Answer
tournesoul
June 2022 | 0 Ответы
6 1 najti uravnenie giperboly vershiny kotoroj nahodyatsya v fokusah a fokusy
Answer
рекомендуемые вопросы
rarrrrrrrr
August 2022 | 0 Ответы
o chem dolzhny pozabotitsya v pervuyu ochered vzroslye pri organizacionnom vyvoze n
danilarsentev
August 2022 | 0 Ответы
est dva stanka na kotoryh vypuskayut odinakovye zapchasti odin proizvodit a zapcha
myachina8
August 2022 | 0 Ответы
najti po grafiku otnoshenie v3v1 v otvetah napisano 9 no nuzhno reshenie
ydpmn7cn6w
August 2022 | 0 Ответы
Choose the correct preposition: 1.I am fond (out,of,from) literature. 2.where ar...
millermilena658
August 2022 | 0 Ответы
opredelite kak sozdavalas i kto sozdaval arabskoe gosudarstvo v kracii
MrZooM222
August 2022 | 0 Ответы
ch ajtmanov v rasskaze krasnoe yabloko ispolzuet metod rasskaz v rasskaze opi
timobila47
August 2022 | 0 Ответы
kakovo bylo naznachenie kazhdoj iz chastej vizantijskogo hrama pomogite pozhalujsta
ivanyyaremkiv
August 2022 | 0 Ответы
moment. 6....
pozhalujsta8b98a56c0152a07b8f4cbcd89aa2f01e 97513
sarvinozwakirjanova
August 2022 | 0 Ответы
pomogite pozhalusto pzha519d7eb8246a08ab0df06cc59e9dedb 6631
×
Report "Блок схему и текст программы на с++..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int const n=8;
int r(int i, int j)
{
if(i<n/2)
if (j<n/2)
return 1;
else
return 2;
else
if (j<n/2)
return 3;
else
return 4;
}
int main(int argc, char *argv[])
{
int m[n][n];
for(int i=0; i<n; ++i)
for (int j=0; j<n; ++j)
m[i][j]=r(i,j);
for(int i=0; i<n; ++i){
for (int j=0; j<n; ++j)
cout <<m[i][j]<<" ";
cout <<endl;
}
system("pause");
return EXIT_SUCCESS;
}