题解列表

筛选

拆分位数 (C语言代码)

摘要:解题思路:int 数据除数取整,456/100=4;求模。注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d;    scanf("%d",&a……

拆分位数 (C语言代码)

摘要:解题思路:int 数据除数取整,456/100=4;求模。注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d;    scanf("%d",&a……

三角形 (C++代码)

摘要:解题思路:dp...注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #define N 100 using nam……