摘要: 1 #include <iostream> 2 3 using namespace std; 4 5 struct free_throws 6 { 7 string name; 8 int made; 9 int attempts; 10 float percent; 11 }; 12 13 voi 阅读全文
posted @ 2022-07-15 15:24 老年新手工程师 阅读(38) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; void swapr(int &a,int &b); void swapp(int *pa,int *pb); void swapv(int a,int b); int main() { int wallet1=300 阅读全文
posted @ 2022-07-15 13:12 老年新手工程师 阅读(21) 评论(0) 推荐(0) 编辑