Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. variavel
  2.  
  3. extern
  4. static
  5. volatile
  6. register
  7.  
  8. include
  9. define
  10. macro
  11.  
  12. return
  13. inline
  14. asm
  15.  
  16. enum
  17. struct
  18. union
  19. class
  20. interface
  21.  
  22. throw
  23. try
  24. catch
  25. finally
  26.  
  27. super
  28. this
  29.  
  30. public
  31. private
  32. protected
  33.  
  34. abstract
  35. final
  36.  
  37. const
  38.  
  39. if
  40. else
  41. switch
  42. case
  43. default
  44. break
  45. for
  46. while
  47. do
  48. continue
  49. with
  50.  
  51. unsigned
  52. signed
  53.  
  54. long
  55. short
  56.  
  57. char
  58. string
  59.  
  60. void
  61. bool
  62.  
  63. int
  64. float
  65. double
  66.  
  67. new
  68. delete
  69.  
  70. null
  71. true
  72. false
  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. ]
  119. {
  120. }
  121.  
  122. .
  123. ,
  124. ;
  125. :
  126.  
  127. private interface
  128. {
  129. public void hello();
  130. }
  131.  
  132. public abstract class A
  133. {
  134. }
  135.  
  136. public class B : A
  137. {
  138. public static void main(string [] args)
  139. {
  140. int i = 0;
  141.  
  142. for (int i = 0; i < 100; i++)
  143. {
  144. }
  145.  
  146. if (i == 100)
  147. {
  148. }
  149.  
  150. else
  151. {
  152. }
  153.  
  154. while (i > 10)
  155. {
  156. i++;
  157. }
  158.  
  159. switch (i)
  160. {
  161. case 0:
  162. break;
  163.  
  164. default:
  165. break;
  166. }
  167. }
  168. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement