l2.1b
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· 1B 代码 · 共 22 行
1B
22 行
#print(Section 1.2)Write a C program that prints a number which isthe sum of three numbers: 23, 197, and the productof 23 and 197. Again, compile and testit. Please do the computation with the program -if you do it by hand, I'll give you credit for thework, but it's just stupid.#usera.out >testgrep 4751 test >/dev/null#succeed/* Here is one possible solution */main(){ printf("%d\n", 23 + 197 + 23*197);}#log#next2.1c 10
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?