C语言除法运算

#include <stdio.h>

int main() {
   int op1, op2, div;      // variable declaration

   op1 = 6;                // variable definition
   op2 = 3;

   div = 6 / 3;            // division operation

   printf(Output of %d divide by %d is %d, op1, op2, div);
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...