上传文件至「666」

This commit is contained in:
2026-04-25 04:27:16 -04:00
parent 91da12510e
commit 83d761d20b

22
666/01.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include<iostream>
using namespace std;
int main(){
int t=0;
int h=0;
while(h<=17){
t++;
h+=3;
if(h>=17)
break;
t++;
h--;
}
cout<<"需要"<<t<<"分钟"<<endl;
return 0;
}