实例 C 语言加法运算符

x
 
#include <stdio.h>
int main() {
  int myNum = 100 + 50;
  printf("%d", myNum);
  return 0;
}
                    

输出结果

150