題目:
1.字串轉為int
輸入1234
輸出1234
注意:輸入的必須為字串,輸出必須為int型
2.偶數字轉為大寫
例如:輸入:lanzhihui is a boy!
輸出:lanzhihui is a boy!
注意:空格也算一位,符號不變.
3.每個單詞偶數字轉為大寫
例如:輸入:lanzhihui is a boy!
輸出:lanzhihui is a boy!
注意:符號不變.
4.字串轉換為double
例如:輸入:123.456 //char a[10]
輸出:123.456 //double n;
5.十進位制轉換為二進位制
輸入:10
輸出:1010
6.將字串中大寫轉換為小寫,小寫轉換為大寫
輸入:lanzhihui
輸出:lanzhihui
7.輸入乙個十進位制數轉換為二到九進製的任意進製
答案:1.字串轉為int
輸入1234
輸出1234
注意:輸入的必須為字串,輸出必須為int型
#include
#include
using namespace std;
int main()
2.偶數字轉為大寫
例如:輸入:lanzhihui is a boy!
輸出:lanzhihui is a boy!
注意:空格也算一位,符號不變.
#include
#include
using namespace std;
int main()
,temp[40]=;
gets(ch);
int i=0,j=0;
while(ch[i]!='\0')
else
}coutreturn 0;
}3.每個單詞偶數字轉為大寫
例如:輸入:lanzhihui is a boy!
輸出:lanzhihui is a boy!
注意:符號不變.
#include
#include
using namespace std;
int main()
,temp[40]=;
gets(ch);
int i=0,j=0;
while(ch[i]!='\0')
else
i++;
j++;
}cout}4.字串轉換為double
例如:輸入:123.456 //char a[10]
輸出:123.456 //double n;
#include
#include
using namespace std;
int main()
cout<<"輸入"return 0;
}/*5.十進位制轉換為二進位制
輸入:10
輸出:1010
#include
#include
using namespace std;
int main()
//cout<<"i"<=0;k--)
cout<
#include
using namespace std;
int main()
cout<
using namespace std;
int main()
//cout<<"i"=0;k--)
cout}
程式設計入門基礎程式設計題一 c語言
1.近似值 問題描述 已知可以用下列公式計算 的近似值。給定乙個 的近似值e,程式設計利用下列公式求得最接近e的近似值 以及迭代次數n 大於等於1 2 2 1 x 2 3 x 4 3 x 4 5 x 6 5 x 6 7 x x 2n 2n 1 x2n 2n 1 輸入形式 從控制台輸入e e大於2.6...
C語言基礎程式設計題目(函式題)
本題要求實現乙個函式,對給定的正整數n,列印從1到n的全部正整數。void printn int n 其中n是使用者傳入的引數。該函式必須將從1到n的全部正整數順序列印出來,每個數字佔1行。include void printn int n int main 你的 將被嵌在這裡 31 23 6 1 ...
C 零基礎學習程式設計題!!
1.編乙個程式,從鍵盤上輸入三個數,用if語句和邏輯表示式把最大數找出來。2 編乙個程式,從鍵盤上輸入三個數,用if語句和邏輯表示式把最小數找出來。3 編乙個程式,定義乙個字元變數,使用if else語句,輸入乙個字元,如果它是大寫字母,則把它轉換成小寫字母,如果它是小寫字母,則把它轉換成大寫字母,...