题解列表

筛选

Tom数 (C语言代码)

摘要:#include <stdio.h> void main() {     char nums[33];     while (gets(nums)!=NULL)     { int ……

剪刀石头布 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a,b;     cin>>a>>b;……