-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
фигуры #94
base: master
Are you sure you want to change the base?
фигуры #94
Conversation
@@ -0,0 +1,42 @@ | |||
#include <iostream> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Во-первых, добавляйте файлы на свою ветку.
Во-вторых, большинство программ я у Вас проверила и написала несколько комментариев, если что-то не отобразилось, то перейдите на вкладку Pull request -> Closed и отфильтруйте все запросы по автору svvan45
В-третьих, проверила Вашу работу по отрисовке фигур. Вы над заданием не видели магический заголовок ООП? Он означает, что при выполнении задания нужно применить принципы ООП.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Да, классы. Возможно, есть смысл создать абстрактный класс.
Я что-то запутался в этих ветках чутка🙄
А по отрисовке фигур нужно использовать классы?
пн, 21 дек. 2020 г. в 18:55, Nastasia8 <[email protected]>:
… ***@***.**** commented on this pull request.
------------------------------
In 123/film.cpp
<#94 (comment)>
:
> @@ -0,0 +1,42 @@
+#include <iostream>
Во-первых, добавляйте файлы на свою ветку.
Во-вторых, большинство программ я у Вас проверила и написала несколько
комментариев, если что-то не отобразилось, то перейдите на вкладку Pull
request -> Closed и отфильтруйте все запросы по автору svvan45
В-третьих, проверила Вашу работу по отрисовке фигур. Вы над заданием не
видели магический заголовок ООП? Он означает, что при выполнении задания
нужно применить принципы ООП.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#94 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARAEOFC57B4NTE7QBLCSDBDSV5VXPANCNFSM4VDQEAYA>
.
|
@@ -0,0 +1,56 @@ | |||
class Car: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ок
@@ -0,0 +1,167 @@ | |||
#include <iostream> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Почему не переделали?
|
||
void set_st(){ | ||
cout << "Write: FIO, KURS, GROUP, AGE:" << endl; | ||
getline(cin, fio); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
И здесь, я же Вам писала, как исправить ситуацию.
"Это все из-за смешанного ввода: символы, числа. В потоке может остаться символ переноса строки, поэтому нужно добавить cin.ignore();
с помощью него будет игнорироваться попадание в строку символа клавиши Enter"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Посмотрите комментарии к предыдущему запросу.
Когда прописываю cin.ignore(); он просит дополнительный ввод
ср, 23 дек. 2020 г., 22:35 Nastasia8 <[email protected]>:
… ***@***.**** commented on this pull request.
------------------------------
In 2.py
<#94 (comment)>
:
> @@ -0,0 +1,56 @@
+class Car:
Ок
------------------------------
In Задание с рисованием фигур/figura.cpp
<#94 (comment)>
:
> @@ -0,0 +1,167 @@
+#include <iostream>
Почему не переделали?
------------------------------
In дз/студент.cpp
<#94 (comment)>
:
> + if ((age < 17) || (age > 35)){
+ cout << "Age: error" << endl;
+ this -> age = 0;
+ }
+ }
+ void check_group(int group){
+ if (group < 0){
+ cout << "Group: error" << endl;
+ this -> group = 0;
+ }
+ }
+ public:
+
+ void set_st(){
+ cout << "Write: FIO, KURS, GROUP, AGE:" << endl;
+ getline(cin, fio);
И здесь, я же Вам писала, как исправить ситуацию.
"Это все из-за смешанного ввода: символы, числа. В потоке может остаться
символ переноса строки, поэтому нужно добавить cin.ignore();
с помощью него будет игнорироваться попадание в строку символа клавиши
Enter"
------------------------------
In дз/студент.cpp
<#94 (comment)>
:
> + if ((age < 17) || (age > 35)){
+ cout << "Age: error" << endl;
+ this -> age = 0;
+ }
+ }
+ void check_group(int group){
+ if (group < 0){
+ cout << "Group: error" << endl;
+ this -> group = 0;
+ }
+ }
+ public:
+
+ void set_st(){
+ cout << "Write: FIO, KURS, GROUP, AGE:" << endl;
+ getline(cin, fio);
Посмотрите комментарии к предыдущему запросу.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#94 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARAEOFGXTD6IT4QTA7TDXVDSWJBBXANCNFSM4VDQEAYA>
.
|
No description provided.