-->
当前位置:首页 > 题库 > 正文内容

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

Luz3年前 (2022-07-06)题库518

目标点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 ||

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。