只能读取01
机器码
编译
解释性需要转换
能
编译
.
你好
查看参考答案
感谢小甲鱼!
二进制,汇编语言,编译
1111
1因为CPU只懂1和0
2机器语言
3编译
4不知道
5解释器
6明文转换表?
4
我要看看
我想看看自己做的对不对
{:5_109:}
课后习题
滴滴滴
#include<stdio.h>
int main(void)
{
printf("hello word!");
return 0;
}
感谢楼主无私奉献
{:5_102:}
查看参考答案
#include <stdio.h>
int max(int a,int b);
main()
{
int x,y,z;
int max(int a,int b);
printf("input two numbers:\n");
scanf("%d%d",&x,&y);
z=max(x,y);
printf("maxmum=%d",z);
}
int max(int a,int b)
{
if(a>b)return a;else return b;
}
1