已知变量a=1,b=4,使用C语言求解算式ax3-b÷2的值
#include <stdio.h> int main() { int a=1,b=4,c; c = a*3 - b/2; printf("%d",c); }