Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(){
- int male = 0;
- /**
- red = 1
- green = 2
- blue = 3
- **/
- int color = 444;
- if(color == 1){
- printf("You chose red color");
- }else if(color == 2){
- printf("You chose green color");
- }else if(color == 3){
- printf("You chose blue color");
- }else{
- printf("There is an error choosing color");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement