Compile Error
/in/foo.cs(2,0): error CS1024: Wrong preprocessor directive /in/foo.cs(2,0): error CS1525: Unexpected symbol `int' Compilation failed: 2 error(s), 0 warnings
代码
#include<stdio.h>
int main()
{
int a,b;
scanf("%d%d",&a,&b);
while(a<32767 && a>-32767 && b<32767 && b>-32767)
{
if(a>b)
printf("%d %d",a,b);
else
printf("%d %d",b,a);
break;
}
return 0;
}
信息
- 递交者
- 类型
- 递交
- 题目
- 用if语句实现选择结构
- 题目数据
- 下载
- 语言
- C#
- 递交时间
- 2018-06-21 14:11:51
- 评测时间
- 2018-06-21 14:11:51
- 评测机
- 分数
- 0
- 总耗时
- 0ms
- 峰值内存
- 0 Bytes