摘要: #includeusing namespace std;int main (){ float a; int b; scanf("%f",&a); b=a; printf("%d",b); return 0;} 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main (){ bool a; char b; printf("%d %d",sizeof(a),sizeof(b)); return 0;} 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main (){ float a; double b; printf("%d %d",sizeof(a),sizeof(b)); return 0;} 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main (){ int a; short b; printf("%d %d",sizeof(a),sizeof(b)); return 0;} 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ double x; scanf("%lf",&x); printf("%.5f", 5.0*(x-32)/9); return 0;} 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ double x,a,b,c,d; scanf("%lf%lf%lf%lf%lf",&x,&a,&b,&c,&d); printf("%.7lf",a*(x*x*x)+b*(x*x... 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ float a,b; scanf("%f%f",&a,&b); printf("%.3f%%",b/a*100); return 0;} 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a/b<<" "<<a%b; return 0; } 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ int a,b,c; cin>>a>>b>>c; cout<<(a+b)*c; return 0; } 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; } 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(7) 评论(0) 推荐(0) 编辑