Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdbool.h>
- const char* pronoun(int number,bool plural)
- {
- if(number==2) return "you";
- if(!plural) {if(number==1) return "i";}
- else if(number==1) return "we";
- return "they";
- }
- void dontthink(char who[100],char auxiliaryVerb[105],bool forgiveNotBelieve)
- {
- printf(", don't think %s %s %s you.\n",who,auxiliaryVerb,forgiveNotBelieve?"forgive":"believe");
- }
- int main()
- {
- int i,j;
- for(i=1;i<=2;i++)
- {
- for(j=1;j<=2;j++)
- {
- printf("Yah, you never said a word, you didn't send me no letter"); dontthink(pronoun(1,false),"could",true);
- printf("See, our world is slowly dying and i'm wasting no more time"); dontthink(pronoun(1,false),"could",false);
- }
- printf("Yah, our hands will get more wrinkled and our hair will be grey"); dontthink(pronoun(1,false),"could",true);
- printf("And see, the children are starving and their houses were destroyed"); dontthink(pronoun(3,true),"could",true);
- printf("Hey, when seas will cover lands and when men will be no more"); dontthink(pronoun(2,false),"can",true);
- printf("Yah, when there'll just be silence and when life will be over"); dontthink(pronoun(2,false),"will",true);
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment