题解列表
C语言。。。。。。。。。。。。。。。。。。。。
摘要:#include<stdio.h>struct group{ int a; int b;};void print_space(int n……
台球碰撞,分解运动,为x,y方向运动
摘要:解题思路:注意事项:参考代码:#define _USE_MATH_DEFINES#include<iostream>#include<cmath>#include<iom……
题解 2841: 大整数加法
摘要:解题思路:跟小学计算列竖式一样,搞清楚进位情况就行。注意事项:和列竖式一样,从每个数组的最后一位数字开始往前计算,再判断进位。参考代码:#include<stdio.h>#in……
C语言考试练习题_保留字母
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char name[100]; scanf(&q……
1002: 三个数最大值
摘要:解题思路:三目运算注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int max=0; scanf("%d %d %d&quo……