Click here to Skip to main content
15,885,985 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: To find biggest of n numbers ? Pin
jschell13-Oct-17 5:56
jschell13-Oct-17 5:56 
GeneralRe: To find biggest of n numbers ? Pin
Tarun Jha13-Oct-17 6:02
Tarun Jha13-Oct-17 6:02 
GeneralRe: To find biggest of n numbers ? Pin
jschell15-Oct-17 7:11
jschell15-Oct-17 7:11 
AnswerRe: To find biggest of n numbers ? Pin
Richard MacCutchan13-Oct-17 6:16
mveRichard MacCutchan13-Oct-17 6:16 
GeneralRe: To find biggest of n numbers ? Pin
Tarun Jha13-Oct-17 6:22
Tarun Jha13-Oct-17 6:22 
GeneralRe: To find biggest of n numbers ? Pin
jeron113-Oct-17 6:34
jeron113-Oct-17 6:34 
GeneralRe: To find biggest of n numbers ? Pin
Richard MacCutchan13-Oct-17 6:51
mveRichard MacCutchan13-Oct-17 6:51 
GeneralRe: To find biggest of n numbers ? Pin
Tarun Jha13-Oct-17 7:14
Tarun Jha13-Oct-17 7:14 
ohh! OMG | :OMG: Thank you.
but the code written below only works some time.. Sigh | :sigh:
#include <conio.h>
#include <stdio.h>

int main(){

	int num[50], i=0, j, count =0;
	int k, b;

	printf("Enter 0 to exit entering integers.\n\nEnter your integers:\n");

	do{

		scanf("%d", &num[i]);
		i++;
		count++;

	}while(num[i-1]!=0);

	for(k=0; k<=count-2; k++){

        for(j=0; j<=count-2; j++){

            if(k != j){
                num[k] > num[j];
                b = k;
            	//printf("%d", num[k]);
            	continue;
				}
            else
                break;
        }
        //printf("%d is the biggest number \n", num[k]);
	}

	printf("%d is the biggest number", num[b]);

	return 0;

}


modified 13-Oct-17 13:39pm.

GeneralRe: To find biggest of n numbers ? Pin
David Crow13-Oct-17 16:10
David Crow13-Oct-17 16:10 
GeneralRe: To find biggest of n numbers ? Pin
Richard MacCutchan13-Oct-17 22:33
mveRichard MacCutchan13-Oct-17 22:33 
AnswerRe: To find biggest of n numbers ? Pin
leon de boer13-Oct-17 6:50
leon de boer13-Oct-17 6:50 
Questionwhile error ? Pin
bluatigro12-Oct-17 0:23
bluatigro12-Oct-17 0:23 
QuestionRe: while error ? Pin
David Crow12-Oct-17 2:35
David Crow12-Oct-17 2:35 
AnswerRe: while error ? Pin
Manish K. Agarwal12-Oct-17 4:22
Manish K. Agarwal12-Oct-17 4:22 
AnswerRe: while error ? Pin
Manish K. Agarwal12-Oct-17 4:26
Manish K. Agarwal12-Oct-17 4:26 
QuestionWhere is GetTickCount64()? Pin
inlandchris11-Oct-17 11:10
inlandchris11-Oct-17 11:10 
AnswerRe: Where is GetTickCount64()? Pin
Randor 11-Oct-17 11:52
professional Randor 11-Oct-17 11:52 
GeneralRe: Where is GetTickCount64()? Pin
inlandchris11-Oct-17 17:24
inlandchris11-Oct-17 17:24 
GeneralRe: Where is GetTickCount64()? Pin
Randor 11-Oct-17 19:26
professional Randor 11-Oct-17 19:26 
AnswerRe: Where is GetTickCount64()? Pin
leon de boer11-Oct-17 15:29
leon de boer11-Oct-17 15:29 
GeneralRe: Where is GetTickCount64()? Pin
inlandchris11-Oct-17 17:27
inlandchris11-Oct-17 17:27 
GeneralRe: Where is GetTickCount64()? Pin
Richard MacCutchan11-Oct-17 21:23
mveRichard MacCutchan11-Oct-17 21:23 
AnswerRe: Where is GetTickCount64()? Pin
inlandchris12-Oct-17 2:09
inlandchris12-Oct-17 2:09 
GeneralRe: Where is GetTickCount64()? Pin
leon de boer11-Oct-17 22:14
leon de boer11-Oct-17 22:14 
AnswerRe: Where is GetTickCount64()? Pin
inlandchris12-Oct-17 2:14
inlandchris12-Oct-17 2:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.