/in/foo.c: In function 'main':
/in/foo.c:6:3: error: invalid preprocessing directive #realcomput
#realcomput();
^~~~~~~~~~
/in/foo.c: At top level:
/in/foo.c:9:3: error: invalid preprocessing directive #�
# 定一个计算函数某本书的数量在10本以下不打折,10本以上(包含10)每本打9折。
^
/in/foo.c:10:2: error: invalid preprocessing directive #�
#请编写一个程序,依次输入学校购买n种图书及其数量,输出
^
/in/foo.c:11:2: error: invalid preprocessing directive #�
#需要支付的总费用。保留1位小数。
^
/in/foo.c:12:1: error: unknown type name 'def'
def comput(price , amount ):
^~~
/in/foo.c: In function 'comput':
/in/foo.c:12:28: error: expected declaration specifiers before ':' token
def comput(price , amount ):
^
/in/foo.c:22:5: error: expected declaration specifiers before 'total'
total =0;
^~~~~
/in/foo.c:23:6: error: invalid preprocessing directive #�
#第一本书 :请输入购买的第1种图书价格(元):18 ,请输入该书的数量:50
^
/in/foo.c:24:2: error: expected declaration specifiers before 'total'
total = comput(18,50)
^~~~~
/in/foo.c:26:2: error: invalid preprocessing directive #�
#第二本书 :请输入购买的第2种图书价格(元):22,请输入该书的数量:8
^
/in/foo.c:29:2: error: invalid preprocessing directive #�
#第三本书 :请输入购买的第3种图书价格(元):16,请输入该书的数量:55
^
/in/foo.c:31:2: error: invalid preprocessing directive #�
#输出 总金额
^
/in/foo.c:12:5: warning: type of 'price' defaults to 'int' [-Wimplicit-int]
def comput(price , amount ):
^~~~~~
/in/foo.c:12:5: warning: type of 'amount' defaults to 'int' [-Wimplicit-int]
/in/foo.c:35:1: warning: control reaches end of non-void function [-Wreturn-type]
return
^~~~~~