题解列表

筛选

不高兴的津津

摘要:解题思路:注意事项:若没有t不等于k的话,会输出后一天相等值的星期参考代码:#include<stdio.h>int main(){    int a,b,i,j=0,k,t=0;    for(i=……

基因相关性(简单易懂)

摘要:解题思路:注意事项:注意sum和n的类型。参考代码:#include<stdio.h>#include<string.h>int main(){    int i;    double n,j,k; ……

最简自然数的拆分

摘要:参考代码:#include <iostream> #include <stdlib.h> #include <stdio.h> #include <string.h> using namesp……

1267: A+B Problem题解

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   int a,b;   cin>>a>>b;   cout<<a+b……