Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # include <stdio.h>
  2.  
  3. int main(void){
  4. int x = 7;
  5. if (x == 6){
  6. printf("x on kuusi.");
  7. }else if (x > 6){
  8. printf("x on suurempi kuin kuusi.");
  9. } else {
  10. printf("x on pienempi kuin kuusi.");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement