Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2033 | 邓小龙 | 11判断三角形 | C++ | Wrong Answer | 0 MS | 268 KB | 228 | 2023-12-04 15:43:19 |
# include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b; if(a%b!=0){ c=a%b; cout<<a/b<<" "<<c; } else{ cout<<a/b; } return 0; }
------Input------
14 14 8
------Answer-----
Isosceles Triangle
------Your output-----
1