No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Hi, I'm not sure about <option></option> I don't think <option> can use in input form. If you want to use radio or check box use <input type="radio" value=".."/> or <input type="checkbox" value="../> otherwise, when you click submit, there's actually no value input for your edit_page.php Or you can keep your …
Hey guys, I have done for this problem. Overall, I'm using the link list and node. I treat 1 line with 6 grades + an average as a node. And a list contains 7 nodes. --------------------------------------------------------- [code] #include <iostream> #include <fstream> #include <cstdlib> #include <string> #include <algorithm> using namespace std; …
To find median, first of all, we have to sort the sequence of numbers, after that we can do average for odd and even size. Hope it helps. You can use qsort to sort the sequence. //comparing function int compare(const void *a,const void *b){ return (*(int*)a-*(int*)b); } //median fuction after …
The End.
cibaiciao