摘要:
#include "stdio.h"int fac(int n){ if (1 == n) return 1; return n * fac(n - 1);}int main(){ int n; while (true) { ... 阅读全文
摘要:
输入三角形3条边的长度值(均为正整数),判断是否能为直角三角形的3个边长。 如果 可以,则输出yes,如果不能,则输出no。 如果根本无法构成三角形,则输出not a triangle。判断三角形成立的条件: - 两边之和大于第三边 - 两边之差小于第三边#include "stdi... 阅读全文
摘要:
题目已知鸡和兔的总数量为n,总腿数为m。输入n和m,依次输出鸡的数目和兔的数目。 如果无解,则输出No answer。样例输入:14 32样例输出:12 2样例输入:10 16样例输出:No answer我的解鸡x,兔yx+y=n2x+4y=m解得:y = (m-2n)/2x= n ... 阅读全文
摘要:
输入两个整数a和b,交换二者的值,然后输出。样例输入:824 16样例输出:16 824我的:#include "stdio.h"/*int main(){ int a, b, temp; scanf("%d%d", &a, &b); temp = b; b ... 阅读全文