解题思路:
不过我看了很多好兄弟的答案,只输出一个yes居然就可以了0.0;这题我直呼好家伙。
参考代码:
#include<iostream> #include<ctime> #include<stdlib.h> using namespace std; int main(){ srand((int)time(0)); if(rand()%100>=50) cout<<"yes"; else cout<<"no"; }
0.0分
0 人评分
C语言训练-亲密数 (C++代码)浏览:798 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:747 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:597 |
大神老白 (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:1314 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:943 |
回文数字 (C语言代码)浏览:2539 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:590 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:612 |
数组输出 (C语言代码)浏览:749 |