解题思路:for循环从小到大暴力
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <string>
#include <iterator>
#include <vector>
#include <numeric>
#include <cmath>
#include <cstdlib>
#include <sstream>
#include <iomanip>
#include <algorithm>
#include <string.h>
using namespace std;
int main(){
int x,y,z;
cin>>x>>y>>z;
for(int i=1;i<10001;i++){
if(i%3==0){
if(i/3%x==0&&i/3%y==0&&i/3%z==0){
cout<<i/3<<endl;
break;
}
}
}
return 0;
}
0.0分
0 人评分
C二级辅导-分段函数 (C语言代码)浏览:912 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:524 |
C语言程序设计教程(第三版)课后习题12.5 (C语言代码)浏览:875 |
C语言训练-自由落体问题 (C语言代码)浏览:1775 |
字符串对比 (C语言代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:940 |
C语言训练-大、小写问题 (C语言代码)浏览:792 |
关于C语言变量位置的问题浏览:294 |
字符串的输入输出处理 (C语言代码)浏览:1085 |
C语言程序设计教程(第三版)课后习题12.1 (C语言代码)浏览:689 |