摘要: 练车 学java 写pta 阅读全文
posted @ 2023-07-08 21:29 vvvcutee 阅读(13) 评论(0) 推荐(0)
摘要: 练车 学java 写pta 阅读全文
posted @ 2023-07-08 21:29 vvvcutee 阅读(14) 评论(0) 推荐(0)
摘要: 练车 学java 写pta 阅读全文
posted @ 2023-07-08 21:29 vvvcutee 阅读(11) 评论(0) 推荐(0)
摘要: 1.学习java 2.写pta练习题 3.做饭 4.练车 阅读全文
posted @ 2023-07-03 18:08 vvvcutee 阅读(22) 评论(0) 推荐(0)
摘要: 1. 练车 2. 学习java 3.写pta练习题 阅读全文
posted @ 2023-07-01 21:21 vvvcutee 阅读(21) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h>using namespace std;ostream &amp;sp(ostream &amp;output);class Person{protected: string name; int age;public: Person() {} ~Per 阅读全文
posted @ 2023-05-09 11:21 vvvcutee 阅读(41) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h>using namespace std;ostream &amp;sp(ostream &amp;output);class Person{protected: string name; int age;public: Person() {} ~Per 阅读全文
posted @ 2023-05-09 11:21 vvvcutee 阅读(39) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h>using namespace std;ostream &sp(ostream &output);class Person{protected: string name; int age; public: Person() {} ~Person() { 阅读全文
posted @ 2023-05-09 11:20 vvvcutee 阅读(44) 评论(0) 推荐(0)
摘要: 一辆以固定速度行驶的汽车,司机在上午10点看到里程表上的读数是一个对称数(即这个数从左向右读和从右向左读是完全一样的),为95859。两小时后里程表上出现了一个新的对称数。问该车的速度是多少?新的对称数是多少? #include<stdio.h>int main(){ int t,a[5]; /*数 阅读全文
posted @ 2023-04-27 22:33 vvvcutee 阅读(48) 评论(0) 推荐(0)
摘要: 位反序数设N是一个四位数,它的9倍恰好是其反序数,求N。反序数就是将整数的数字倒过来形成的整数。例如:1234的反序数是4321。 #include<stdio.h>int main(){ int i; for(i=1002;i<1111;i++) /*穷举四位数可能的值*/ if(i%10*100 阅读全文
posted @ 2023-04-27 22:32 vvvcutee 阅读(51) 评论(0) 推荐(0)