klimi
Klimi knows English . But he is tired
Dima
Max
Hey guys! Can I ask you to join my group to test bot protection? I have configured combot to find that damn chineese bots, hope to check if captcha works or not
Max
It will not take more than 5-10 minutes of your time, thank you (sorry for offtop)
Anonymous
Anonymous
@roxifas give it perms to delete msga
Roxifλsz 🇱🇹
klimi
Uwu new bot
Anonymous
Anonymous
/setrules
In order to keep the chat helpful and friendly, all members need to follow these rules:
~ Keep the chat On-Topic
~ Only English
~ Don't ask to write your homework
~ No Spam
~ No Promotions
~ No Piracy
~ No Discrimination
~ No Religious Content
~ No NSFW
~ Be Respectful
~ Don't send messages to the admins in private unless it's related to managing the group.
For Off-Topic chats, you are requested to join our OT group : https://t.me/joinchat/HhOzd0-BPuwThKYmiev6KQ
Quote a message with /report to notify the admins about any rule violations.
Type /saved to get a list of useful saved stuff.
Dima
correctmaninwrongplace
Nice
Anonymous
hello friend can you give me books about programming vulnerabilities
klimi
Dima
ooo buttonz
Dima
lol
Anonymous
Cherry:
Hello guys.. This might take a bit of your time.
Can someone help me understand why the program on
https://www.instructables.com/id/Iris-recognition-on-Zybo/
Isnt running as the way it is shown in the video by the author?
Any help would be greatly appreciated.
Anonymous
@Kivish sorry for the inconvenience .. This is for spam prevention
Mat
Just ask your question
Mat
Don't ask to ask
Anshika
i hv to make a program
Anshika
Input
10 2 345 604 321 433 704 470 808 718 517 811 300 350 400 700
Output
2
4
Explanation
There are 10 sampes (S) and 2 ranges ( R ). The samples are 345, 604,…811. The ranges are 300-350 and 400-700. There are 2 samples in the first range (345 and 321) and 4 samples in the second range (604, 433, 470, 517). Hence the two lines of the output are 2 and 4.
Anshika
this
Anshika
but i dnt understand tht how to display the number of samples
Anonymous
The mode of an array of numbers is the number m in the array that is repeated most frequently. If more than one number is repeated with equal maximal frequencies, there is no mode. Write a C++ function that accepts an array of numbers and returns the mode or an indication that the mode does not exist, and the corresponding program to test the function.
Guys kindly help
Anonymous
Can someone guide me how to implement this with oop.. I really don't understand oop
Anonymous
Develop an application that allows a student to open an account. The account may be a savings account or a current account. The student has to submit his/her names, faculty, course, year of study, University, telephone contact and e-mail address. The student can withdraw, deposit and perform balance enquiries with the account. If the student has opened a savings account, he/she is required to submit a physical address as well. For a current account, the student submits his/her date of birth and is also issued with a cheque book. (NB: Implement the application using C++ programming language)
Dima
class Student, class Account
Anonymous
Student properties
Name
Faculty
Course
Year of study
University
Telephone
Contact
Email
Anonymous
Right?
Mat
Mat
Mat
Develop an application that allows a student to open an account. The account may be a savings account or a current account. The student has to submit his/her names, faculty, course, year of study, University, telephone contact and e-mail address. The student can withdraw, deposit and perform balance enquiries with the account. If the student has opened a savings account, he/she is required to submit a physical address as well. For a current account, the student submits his/her date of birth and is also issued with a cheque book. (NB: Implement the application using C++ programming language)
Don't post homeworks. If you have something to ask, do it. If you'd like to have the solution, don't
Anonymous
Anonymous
That wasn't a homework
Mat
Kk. I'd begin with a diagram rapresenting how the entities will relating with each others
Mat
entities or classes as we're talking about C++
Mat
Then which kind of behavior they should have, and from there define the methods
Mat
https://en.wikipedia.org/wiki/Software_design I think this explains pretty well what i'm talking about
Anonymous
UML might be useful to you. I've never found it useful, but my planning is generally an informal series of scribbles on a whiteboard that I take a photo of and reference once in a while so I might not be the best source for project planning info
Anonymous
Maybe my blasé attitude to large project planning is offensive to him 😂😂😂
Mat
If you post an assignment what should we think?
Mat
Anonymous
he wouldn't be the first but I'm not going to change haha
Anonymous
Yup done
Mat
Anonymous
Anonymous
and i made a 20+k line application we constantly use
Anonymous
Dose anyone use make.. I have some problem
Anonymous
Does any one know how to make lexical analysis code
Anonymous
From cpp
Anonymous
Just pm i need help
Anonymous
Anonymous
Anonymous
Anonymous
Guys I still need help ...who is ready to help
Talula
Talula
Do you want help passing array to function?
feggy
which functional programming language would be a better choice to learn after C++? does functional programming have any special significance over OOP languages like C++, Java etc
Anonymous
Anonymous
mr
Anyone has data structures book author forouzan
mr
klimi
Mercy
/saved
Anonymous
A good book, if anyone's interested, is Bruce Schneier's Applied Cryptography book. I'm hardly a cryptographer but I've really enjoyed it
yuuki
/saved
yuuki
Hello again,
I've a few questions...
Is anyone free enough to indulge?
yuuki
Any ideas on finding the frequency of elements in an integer array?
I want to know how to approach the problem and why
Any response is appreciated.
klimi
maybe unordered_map
yuuki
Maps in C99?
klimi
https://en.cppreference.com/w/cpp/container/unordered_map
Manuele
Manuele
You can also parallelize it
yuuki
A counter array?
Manuele
Since the problem is specific to an array (fixed or not?) of integers, that would probably be the best solution
Manuele
A counter array?
An int variable that counts how many times a number is there