-->
当前位置:首页 > 题库

填空题:目标点1:程序分析并写出运行结果

Luz4年前 (2022-07-06)题库626

目标点1:程序分析并写出运行结果
c
#include<stdio.h>
int main()
{
int a=10,b=3,c;
c=a%b;
printf("Take %d from %d and the remainder is %d",b,a,c);
return 0;
}

以上程序运行结果为:








答案:
第1空:Take 3 from 10 and the remainder is 1 ||