永发信息网

求 C++编一个程序

答案:2  悬赏:70  手机版
解决时间 2021-04-29 21:55
  • 提问者网友:蓝莓格格巫
  • 2021-04-29 05:30
我想编个这样的程序 给定 a到t二十个值,并给它们赋值,从十到二百,输入a 现随机给出从零到二百的i值,并比较i和a的大小,如果i>k.输出“1"如i<k,输出“ 0"
最佳答案
  • 五星知识达人网友:英雄的欲望
  • 2021-04-29 06:51

(1) a 到 t 20 个 值 .. ???



就是 a , b , c , d ... t 这 20 个 值 , 是 把 ??



全部回答
  • 1楼网友:街头电车
  • 2021-04-29 07:04

#include <iostream> using namespace std; int main() { int shuzu[20]; for(int i=0;i<20;i++) shuzu[i]=rand(); for(int i=0;i<20;i++) {

cout<<" "<<shuzu[i]; if((i+1)%5==0)cout<<endl; } cout<<endl<<endl<<endl; for(int i=0;i<19;i++) { int temp;

for(int j=0;j<19-i;j++) {

if(shuzu[j]>shuzu[j+1]) { temp=shuzu[j]; shuzu[j]=shuzu[j+1]; shuzu[j+1]=temp;

} } } for(int i=0;i<20;i++) {

cout<<" "<<shuzu[i]; if((i+1)%5==0)cout<<endl; } cout<<endl;

}

有什么不对的地方的,请追问!

我再帮你修改下,希望对你有所帮助!

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯