菜鸟的博客

纵有疾风起,人生不言弃。

导航

上一页 1 ··· 29 30 31 32 33

2023年4月12日 #

2023.4.12

摘要: //c++语言程序设计第二章习题 //2-4 #include <iostream> using namespace std; int main() { const double PI = 3.1416; double a; a = PI; cout<<"a的值为:"<<a<<endl; retur 阅读全文

posted @ 2023-04-12 21:17 hhmzd233 阅读(11) 评论(0) 推荐(0) 编辑

2023年4月11日 #

2023.4.11

摘要: 中国有句俗语叫“三天打鱼两天晒网”。某人从1990年1月1日起开始“三天打鱼两天晒网”,问这个人在以后的某一天中是“打鱼”还是“晒网”。 1 #include <iostream> 2 using namespace std; 3 int main() 4 { 5 int year,month,da 阅读全文

posted @ 2023-04-11 21:25 hhmzd233 阅读(2) 评论(0) 推荐(0) 编辑

2023年4月10日 #

2023.4.10

摘要: #include <iostream>using namespace std;int main(){ int cock,hen,chicken; for(cock = 0;cock<=20;cock++) { for(hen = 0;hen<=33;hen++) { for(chicken = 0; 阅读全文

posted @ 2023-04-10 22:20 hhmzd233 阅读(1) 评论(0) 推荐(0) 编辑

上一页 1 ··· 29 30 31 32 33