C++ switch循环基础
#include<iostream>using namespace std;int main(){ //switch语句 //给电视剧打分 //9~10牛逼 //8~7挺好 //6~5还行 //5分以下垃圾 //提示用户进行打分 cout << "请给电视剧打分" << endl; //用户开始打分 int score = 0; cin >> score; ...