|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Kind of off topic c programming question.
Sorry if this is off topic, as it is not directly related to FIRST. I've recently started my intro to C programming class.One of my assignments is to write a program that will take 3 number inputs from the user and find the highest and lowest number of the three. I'm only working on the highest number right now.
I've gotten stuck where I am, maybe you guys can help me. Heres what I have so far. Thanks #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { int input_1, /*Input from integer 1*/ input_2, /*Input from integer 2*/ input_3, /*Input from integer 3*/ high_value; /* Highest Value */ /* Collect integers from the user. */ printf("Please enter your first number:"); scanf("%d", &input_1); printf("Please enter your second number:"); scanf("%d", &input_2); printf("Please enter your third number:"); scanf("%d", &input_3); /* Find the largest number *' if (input_1 >= input_2 && input_1 >= input_3) { high_value = input_2; } else if (input_2 >= input_2 && input_2 >= input_3) { high_value = input_2; } else if (input_3 >= input_1 && input_3 >= input_2) { high_value = input_3; } /*Display the highest and lowest numbers*/ printf("\n\nThe Largest number is %d. \n",&high_value); return 0; } |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Off Topic | Brett Elflord | Chit-Chat | 1 | 30-11-2007 18:05 |
| OFF TOPIC: av switch | matt111 | Electrical | 2 | 21-03-2004 15:34 |
| Threads getting off topic | Mike Soukup | CD Forum Support | 29 | 20-08-2001 04:08 |
| chat/off-topic | Brandon Martus | General Forum | 6 | 06-08-2001 10:10 |
| off topic thread | mike o'leary | Chit-Chat | 4 | 31-07-2001 22:55 |