發(fā)文章
發(fā)文工具
撰寫
網(wǎng)文摘手
文檔
視頻
思維導(dǎo)圖
隨筆
相冊
原創(chuàng)同步助手
其他工具
圖片轉(zhuǎn)文字
文件清理
AI助手
留言交流
正確例題
#include<iostream>
using namespace std;
int main()
{
int n,i,j=0;
int a[1000];//存儲二進(jìn)制編碼
cin>>n;
i=n;
while(i)//對2取余并除2,直到商為0時為止
a[j]=i%2;
i/=2;
j++;
}
for(i=j-1;i>=0;i--)//逆序輸出
cout<<a[i];
cout<<endl;
來自: EYYLTV > 《科技探索》
0條評論
發(fā)表
請遵守用戶 評論公約
猜數(shù)字游戲代碼(C++)
猜數(shù)字游戲代碼(C++)#include #include #include #include using namespace std;int main(){? ?coutcout? ?srand(time(0));int val = rand()%(10-5+1)+5;int a;int k=0,j=10;while(kcoutk=k+1;j=j-1;...
C++二分查找代碼
C++二分查找代碼。cin>>x;int l=1,r=15;while(l<=r)int mid=(l+r)/2;if(a[mid]==x)cout<<mid-1<<endl;k=1;break;else if(a[mid]<x)l=mid+1;s++;r=mid-1;if(k==0) cout<<...
原來代碼可以這么寫 --記性不好的matthew
++i) std::cout <<i[arr] <<"";std::cout <<std::endl;++j) std::cout <<arr[j] <<"";So arr[N] == *(arr + N) then we apply the transiti...
08、C++ 內(nèi)聯(lián)函數(shù)
C++ 內(nèi)聯(lián)函數(shù)C++ 內(nèi)聯(lián)函數(shù)。如果一個函數(shù)是內(nèi)聯(lián)的,那么在編譯時,編譯器會把該函數(shù)的代碼副本放置在每個調(diào)用該函數(shù)的地方。如果想把一個函數(shù)定義為內(nèi)聯(lián)函數(shù),則需要在函數(shù)名前面放置關(guān)鍵字 inline,在...
文本文件中,在每一行前加行號(三)
outf.open("output.txt");outf<<i<<" "; cout<<i<<" "; while(inf >>c) { if (c ==''\n''){ /...
簡單的輸入輸出
簡單的輸入輸出源代碼://簡單的輸入輸出 #include<iostream>using namespace std;int main(){ int age; cout<<"...
93 f0312
93 f0312#include"iostream"using namespace std;int main(){float f = 34.5;int *p = reinterpret_cast<int *>(&f);cout <<"fload adress" <<&f <&...
C++源碼:域作用符的使用
C++源碼:域作用符的使用 USEAGE: Cpp Example for "::"
1-1000放在含有1001個元素的數(shù)組中,只有唯一的一個元素值重復(fù),其它均只出現(xiàn)一次
1-1000放在含有1001個元素的數(shù)組中,只有唯一的一個元素值重復(fù),其它均只出現(xiàn) 一次。代碼:*/void FindRepeat(int array[], int length, int num){ int index=array[length-1]-1; cout<<"Th...
科技領(lǐng)域優(yōu)質(zhì)作者
微信掃碼,在手機(jī)上查看選中內(nèi)容