?? 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 + -