- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
Re: any tutorial or website to help me...i want to get the time complexity of this algo using summation and big o...i really find it difficult to understan...can you help me please solve step by step add=0; for (a=1 to n) do for b=1 to a*a do for c=1 to b … | |
how will i round off the return value to decimal place with tis function? [code] unsigned int CalculatePercentage(int TotalComponent, int PartialComponent){ return int((PartialComponent/TotalComponent)100); }[/code] | |
hello i am doing a program that saves cell values from sheet1 to sheet2 as my database including the value in the drop down. my program can save the value of the dropdonw to sheet2 ...my problem is how can display return or display any values saved in sheet2 to … | |
i have three arrays below [code] l = 0 For k = LBound(Tstk) To UBound(Tstk) Tstk(k) = stk(l) l = l + 1 Next k [/code] [code] z = 0 For x = LBound(qty) To UBound(qty) qty(x) = Text5(z).Text z = z + 1 'Tstk(x) = stk(z) - Text5(z).Text 'Print … | |
i have a search program that when searched i will make a receipt, a reciept form will be displayed, the 1st item searched will be displayed on text1(0).text and the quantity also will be displayed in text5(0).text my problem is how to subtract the stock items minus the quantity text5(0).text(its … | |
im converting a fibonacci c code to tasm assembly... i've started my code but im having a difficulty in the part where return fibo(n-1)+fibo(n-2)...please help the red fonts is where im not sure if my code is correct...can you please help c code: [code]int fib(int n) { if (n <= … | |
I had replaced my power supply recently because the fan churning....now my problem is my monitor is shaking or wobbles...what seems to be the problem? | |
i want to add all the inserted linked list by using this code but what happens here if i input 15 then 35 =50 but when i input again 30 the sum is 50whats wrong with my code? [CODE] int sum(nd **head){ nd *p,*sum1; p=*head; sum1=0; while(p!=NULL) { sum1->x=p->x; p=p->next; … | |
Can anyone help me...i have a file modt.txt and i want to save the content in modt2.txt but it seems my code is not working. Moreover, if i have the content of the 1st file Have a nice day. i want to save it to the 2nd file without double … | |
Please help can you help me debug my code i cant display the result and the computation for sum is error... help me please :sad: [code] #include <stdio.h> int i,counter; float sum; struct cgrade { char course[50]; float credit[50]; float grade[50]; }; struct cgrade GPA[50]; main(){ printf("Enter number of courses … |
The End.