• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

CAN NE wright the C++ program for me

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
Why do these people keep posting to have their homework done for them?

Do your work darn work! and don't wait until the last minute!
 
Originally posted by: spanky
Originally posted by: MAME
Originally posted by: spanky
Originally posted by: MAME
Originally posted by: spanky
why dont u guys use pm's?

what's a pm?

this

is this a new feature they just added?

yes. windows has a built-in shortcut for this feature. hold down both the "ctrl" and "alt" keys, then tap on the "delete" key two or three times.

? that didn't work. In fact it crashed my computer or something and made it restart
 
Originally posted by: spanky
Originally posted by: AgaBoogaBoo
Originally posted by: BCYL
Why do these people keep posting to have their homework done for them?

Do your work darn work! and don't wait until the last minute!

or at least offer some money!

or nude pics of ur gf.

I know nothing about C++ but i'll give it a try if this is on the table.

😀
 
Originally posted by: pyonir
Originally posted by: spanky
Originally posted by: AgaBoogaBoo
Originally posted by: BCYL
Why do these people keep posting to have their homework done for them?

Do your work darn work! and don't wait until the last minute!

or at least offer some money!

or nude pics of ur gf.

I know nothing about C++ but i'll give it a try if this is on the table.

😀

too bad anyone who knows C++ doesn't have a gf

and on the off chance someone did, 'it' would look hideous
 
my grass needs cut, if anyone has some extra time, come cut it, I have the mower, weed eater, etc, but I am too busy reading this thread, and with all the free help out there why not just ask!
 
Originally posted by: MAME
Originally posted by: pyonir
Originally posted by: spanky
Originally posted by: AgaBoogaBoo
Originally posted by: BCYL
Why do these people keep posting to have their homework done for them?

Do your work darn work! and don't wait until the last minute!

or at least offer some money!

or nude pics of ur gf.

I know nothing about C++ but i'll give it a try if this is on the table.

😀

too bad anyone who knows C++ doesn't have a gf

and on the off chance someone did, 'it' would look hideous

Good point.
 
hil programmers please help me out , tommorow is the day i have to submit at MIT university australia . give your mail ids i wil send the files .
 
k a couple of things regarding program 4:

- void main() should be int main(), then make sure you return 0; from main()
- cin >> T[ i ]; won't work because the vector initialize has no capacity. instead try cin >> k; then T.push_back(k);
- you cannot pass a vector<int> to IntArray100 which is just a c-style array of size 100. instead modify the function so it accepts a vector by reference eg sort(vector<int>& array, ...);
- always pass vectors by references. in binarySearch() you are passing by value - this is inefficient. instead of vector<int>, try const vector<int>& ---> const because you don't need to modify the array
- when search doesn't find the item, returning 0 is a bad idea because 0 is a valid item index. try something like -1 instead.

that's all the problems i see for now.
 
hi thaks yaar u r very fast , please modify the program with above of ur suggestions for program 4 and send me na , i dont know how to that , my friend sent it to me to do. and how abt progrom 5 . is it abt to be completed ,
thank you very much yaar

- praveen
 
hi brian sorry yaar the prgram must be written VC++ instead of c++ yaar please do that in VC++ , so u dont need vector.h in assignment 4
 
So you are trying to get into MIT of Austrailia (I'm guessing it is in the same stature as MIT here in the USA), but you want people to do your homework for you. That is definitely unbecoming a student like that...
I've asked for help on the forums as well for certain coding (namely just python and matlab, my major isn't programming), but I asked for technique help, or to figure something out. Not scream out, "I'm applying to a prestigous college soon and need you to do my Homework! Please someone help me!"

and then when someone does decide to help someone like you, you have the audicity to TELL THEM TO MAKE THE MODIFACATION THEMSELVES AND SEND IT BACK.

I hope you get rejected.
 
hi mango mango , its not mine yaar my freind sent to me to do yaar , he is doin ms in mit australia , as i dont know abt programmin cant modify na thats it.
 
Back
Top