📄 l2.1b
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -