#include <stdio.h>
int main()
{

char a[128], k[128];
int b, c, d, e, f, g, h, i, j;

printf("                              Sexy Test v1.0\n");
printf("                              by Kevin Sheppard\n");
printf("                             --=[Sheeprosoft Inc]=--\n\n\n\n");

printf("What's your name?\n");
gets(a);
printf("Well %s I have a little test that I want you to take\n", a);
printf("It's called the sexy test, a test for you to see how sexy you are.\n\n");
printf("                    INSTRUCTIONS\n\n\n");

printf("I will ask you a question and you will choose from the choices below it.\n");
printf("Answes MUST be in numerical form: either 1, 2, 3, 4 etc.\n");
printf("You will see your score at the end of the test.\n\n");


printf("                   EXAM STARTS HERE\n\n\n");

printf("A. What shade of hair do you have?:\n"); 
printf("1. Light\n");
printf("2. Dark\n");
scanf("%d", &b);

printf("B. If you were out on a date, would you want to:\n");
printf("1. Go to a party\n");
printf("2. Go out to eat\n");
scanf("%d", &c);

printf("C. What's your favorite colour out of:\n");
printf("1. Pink\n");
printf("2. Yellow\n");
printf("3. Baby-blue\n");
printf("4. Sea-Foamgreen\n");
printf("5. Purple\n");
scanf("%d", &d);

printf("D. Pick your favorite hobby out of:\n");
printf("1. Skiing\n");
printf("2. Surfing\n");
printf("3. Skating\n");
scanf("%d", &e);

printf("E. If you could pick a store between these, which one would you pick?:\n");
printf("1. Pacific Sunware\n");
printf("2. Old Navy\n");
printf("3. Victoria's Secret\n");
scanf("%d", &f);

printf("F. What's your favourite state out of:\n");
printf("1. California\n");
printf("2. Ohio\n");
printf("3. Florida\n");
scanf("%d", &g);

printf("G. In the summer would you rather go to:\n");
printf("1. Somewhere cooler\n");
printf("2. The beach\n");
scanf("%d", &h);

printf("Wnat's your birthday month?:\n");
printf("1. January\n"); 
printf("2. February\n"); 
printf("3. March \n");
printf("4. April\n");
printf("5. May\n"); 
printf("6. June\n"); 
printf("7. July\n"); 
printf("8. August\n"); 
printf("9. September\n"); 
printf("10. October\n"); 
printf("11. November\n"); 
printf("12. December\n");
scanf("%d", &i);

j = b + c + d + e + f + g + h + i;
printf("                    END OF EXAM\n\n\n");

printf("You got %d out of 32\n", j);
printf("Your sexy rating is:\n\n");
if(j >= 30)
printf("Super sexy!!!!, Yuh is a hot stepper!! =) =) =)\n\n");
if(j == 16)
printf("Just the average joe, might be lucky with some girl =|\n\n");
if(j < 16)
printf("NOT SEXY!! hard luck son =( =(\n");
if(j == 17)
printf("Just the average joe, might be lucky with some girl =|\n\n");
if(j == 18)
printf("Just the average joe, might be lucky with some girl =|\n\n");
if(j == 19)
printf("Just the average joe, might be lucky with some girl =|\n\n");
if(j == 20)
printf("Just the average joe, might be lucky with some girl =|\n\n");
if(j == 21)
printf("Sexy but not all that\n\n");
if(j == 22)
printf("Sexy but not all that\n\n");
if(j == 23)
printf("Sexy but not all that\n\n");
if(j == 24)
printf("Sexy but not all that\n\n");
if(j == 25)
printf("Sexy, sexy, I like, I like\n\n");
if(j == 26)
printf("Sexy, sexy, I like, I like\n\n");
if(j == 27)
printf("Sexy, sexy, I like, I like\n\n");
if(j == 28)
printf("Sexy, sexy, I like, I like\n\n");
if(j == 29)
printf("Sexy, sexy, I like, I like\n\n");
printf("Press 'enter' to exit\n");
gets(k);

}