摘要:
问题描述:一些人,围成一圈123报数,报到3的人退出,求最后一个人是几号 解答:NUM是总人数 1 #include <iostream> 2 #define NUM 5 3 using namespace std; 4 5 int n[NUM]; 6 int main() { 7 8 int in 阅读全文
摘要:
//实现的功能,用户输入任意的两个数,进行相加计算 1 #include <iostream> 2 using namespace std; 3 4 int main() { 5 //大数相加 6 string str1,str2; 7 cin>>str1>>str2; 8 int length1= 阅读全文