摘要:
#include <bits/stdc++.h> using namespace std; int rollDice() { int die1=1+rand()%6; int die2=1+rand()%6; int sum=die1+die2; cout<<"playr rolled"<<die1 阅读全文
摘要:
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { enum color{red,yellow,blue,white,black}; int i,j,k; int n=0; 阅读全文