上一页 1 ··· 24 25 26 27 28
摘要: #include <stdio.h> #include <math.h> int main() { float a; float x1, x2; printf("请输入待求平方根的数:"); scanf("%f",&a); x1 = a / 2; x2 = (x1 + a / x1) / 2; wh 阅读全文
posted @ 2023-04-22 15:53 痛苦代码源 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { long fib1=1,fib2=1,fib; int i; printf("%121d21d",fib1,fib2); for (i=3;i<=30;i++) { fib=fib1+fib2; printf("%12d",fib); i 阅读全文
posted @ 2023-04-21 20:40 痛苦代码源 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 2023-04-26#include <iostream> using namespace std; int main() { int i = 0, j = 0; int k = 0; //k记录车牌号 int flag = 0; //用来记录是否找到嫌疑人车牌号 for (i = 0; i <= 阅读全文
posted @ 2023-04-20 19:10 痛苦代码源 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; class Date { public: int year; int month; int day; }; bool runnian(Date&d) { if ((d.year % 4 == 0 && d.year % 阅读全文
posted @ 2023-04-19 19:41 痛苦代码源 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> main() { int a,b,c,i=0; printf("A,B,C三人所选的书号分别是:\n"); for(a=1;a<=5;a++) for(b=1;b<=5;b++) for(c=1;c<=5;c++) if(a!=b&&a!=c&&c!=b) { p 阅读全文
posted @ 2023-04-18 19:38 痛苦代码源 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 源代码 #include<bits/stdc++.h> using namespace std; int main(){ //百钱百鸡 int cock,hen,chicken; for (cock=0;cock<=20;cock++)//控制公鸡数量 for(hen=0;hen<=30;hen++ 阅读全文
posted @ 2023-04-17 20:09 痛苦代码源 阅读(26) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28