题解列表

筛选

甲流疫情死亡率

摘要:解题思路:注意事项:因为有百分号,所以应该给结果乘100参考代码:#include<stdio.h>int main(){ int a,b; double t; scanf("%d %d",&a,&b……

3004: 成绩(c++代码)

摘要:最后的输出结果要是整型才能通过哦! ```cpp #include using namespace std; int main() { int a,b,c; cin>>a……

1320: 字符串展开

摘要:```cpp #include #include using namespace std; int p1,p2,p3,sub_s,ji=1; string s,s1,s_j; bool f……

1267: A+B Problem

摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; cout……