Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5.     char fuckscanf;
  6.     int nem;
  7.     printf("Ist Nemesis geil?\n\n [0]No      [1]Yes\n");
  8.     scanf("%i%c",&nem,&fuckscanf);
  9.     if(nem==1){
  10.         printf("Duh. Was auch sonst?\n");
  11.     }
  12.     else if(nem==0){
  13.         printf("SHUN THE DISBELIEVER\n");
  14.     }
  15.     else{
  16.         printf("Yeah, okay, fuck off.\n");
  17.     }
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement