1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
#include "stdafx.h"
int _tmain(int argc, TCHAR* argv[])
{
int e; //First varible
int fa1 = 3; //First Answer
int sa1; //Second Answer
int la1; //Last Answer
//My introduction to the lesson
printf( "LEARNING JAPANESE - Nihongo gakusyu\n\n" );
printf( "Hello :3 I would like to welcome you to the first lesson of most likely\n");
printf( "multiple.\n\n" );
printf( "If you're ready to start your lesson type \"0\" then press \"enter\".\n" );
scanf( "%d", &e );
if( e == 0 ) //Lesson 1
{
printf( "Welcome to Lesson One (Ressun ichi). Now, we'll get right into it. The\n" );
printf( "first thing you should know is how they say \"Japan\".\n\n" );
printf( "In romanji (japanese words written with our alphebet) it can be spelled\n" );
printf( "\"Nippon\" but in most cases it'll be spelled \"Nihon\".\n\n" );
printf( "But, let's add some suffixes to make that simple word into other words.\n" );
printf( "\"Jin\" can be added to the end of any countries name to make it the name\n" );
printf( "of that countrys' citizens. So, \"Nihonjin\" are Japanese people. Also,\n" );
printf( "\"Go\" can be added to the end of a country's name to name the language\n" );
printf( "origined by the country. So, \"Nihongo\" is the japanese language.\n\n" );
printf( "So, here's a test. What do you call Spanish people in japanese.\n" );
printf( "NOTE: Spain is spelled \"Supein\" in japan (I'll explain why later)\n" );
printf( "1.Supeingo\n" ); //wrong
printf( "2.Spaingo\n" ); //Very wrong
printf( "3.Supeinjin\n\n" ); //YES!!!
scanf( "%d", &fa1 );
}
else
{
return (0);
}
if( sa1 = fa1 )
{
printf( "HAI! That is correct, dear friend. \"jin\" is the suffix for language.\n" );
printf( "Now, America in the japanese language is spelled \"Amerika\". Therefore,\n" );
printf( "you are an \"Amerikajin\". Isn't that awesome :D!? Rolls of the tongue!\n\n" );
printf( "But, you do not speak \"Amerikago\". In fact, just saying that makes\n" );
printf( "my biligual brain want kill it. No, you speak the language of England,\n" );
printf( "\"English\". Now in japanese, they just call english in an imformal\n" );
printf( "chat \"Eigo\" as opposed to \"Ingurandogo\" so as to not want to pull\n" );
printf( "the trigger XD!\n" );
printf( "MORE COMING SOON!!\n" );
}
else if( fa1 == 2 ) //If you didn't pay attention to me at all
{
printf( "IIE. That is super wrong (Sorry). Please reread the lesson and question\n" );
printf( "Try another option.\n\n" );
scanf( "%d", &sa1 );
}
else if( fa1 == 1 ) //If you chose the wrong answer
{
printf( "IIE. I'm sorry, but that was wrong. \"go\" is used to identify its a name\n" );
printf( "of a language, not the name of natinality. Try another option.\n\n" );
scanf( "%d", &sa1 );
}
else
{
return(0);
}
if( sa1 == 1 ) //If you didn't pay attention to me at all
{
printf( "IIE. I'm sorry, but that was wrong. \"go\" is used to identify its a name\n" );
printf( "of a language, not the name of natinality. The answer is 3.\n\n" );
scanf( "%d", &la1 );
}
else if( sa1 == 2 )
{
printf( "IIE. That is super wrong (Sorry). Please reread the lesson and question\n" );
printf( "the correct answer is 3.\n\n" );
scanf( "%d", &la1 );
}
else if( sa1 == 3 ) //If you were a good student :3
{
printf( "HAI! That is correct, dear friend. \"jin\" is the suffix for language.\n" );
printf( "Now, America in the japanese language is spelled \"Amerika\". Therefore,\n" );
printf( "you are an \"Amerikajin\". Isn't that awesome :D!? Rolls of the tongue!\n\n" );
printf( "But, you do not speak \"Amerikago\". In fact, just saying that makes\n" );
printf( "my biligual brain want kill it. No, you speak the language of England,\n" );
printf( "\"English\". Now in japanese, they just call english in an imformal\n" );
printf( "chat \"Eigo\" as opposed to \"Ingurandogo\" so as to not want to pull\n" );
printf( "the trigger XD!\n" );
printf( "MORE COMING SOON!!\n" );
}
else
{
return(0);
}
if( la1 == 3 )
{
printf( "HAI! That is correct, dear friend. \"jin\" is the suffix for language.\n" );
printf( "Now, America in the japanese language is spelled \"Amerika\". Therefore,\n" );
printf( "you are an \"Amerikajin\". Isn't that awesome :D!? Rolls of the tongue!\n\n" );
printf( "But, you do not speak \"Amerikago\". In fact, just saying that makes\n" );
printf( "my biligual brain want kill it. No, you speak the language of England,\n" );
printf( "\"English\". Now in japanese, they just call english in an imformal\n" );
printf( "chat \"Eigo\" as opposed to \"Ingurandogo\" so as to not want to pull\n" );
printf( "the trigger XD!\n" );
printf( "MORE COMING SOON!!\n" );
}
else
{
return(0);
}
return 0;
}
|