Guest User

Untitled

a guest
Feb 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int x ; // 宣告:告訴電腦,你要用甚麼代數
  6.  
  7. x = 999999 ;
  8.  
  9. printf( " %d ", x ) ; // %d 代表逗點後面的代數 ( 這裡是 x )
  10. }
Add Comment
Please, Sign In to add comment