哈工大C語言程式設計精髓 第一周作業

2021-10-04 20:31:44 字數 753 閱讀 9758

題目內容:

使用printf()在螢幕上輸出 hello world!

#include  

int main()

printf("hello world!\n");

return 0;

題目內容:

使用printf()函式在螢幕上輸出以下多行資訊:

hello world!

hello hit!

hello everyone!

#include  

int main()

printf("hello world!\n");

printf("hello hit!\n");

printf("hello everyone!\n");

return 0;

題目內容:

#include

#include

#include

#define pi 3.14159

int main()

題目內容:

程式設計並輸出長1.2、寬4.3、高6.4的長方體的體積。要求長方體的長、寬、高必須利用const常量表示。程式中用到的資料型別均為為 double型別。

#include

#include

#include

int main()

C 第一周作業

1.編寫調式執行第乙個 c 程式,要求輸出你的班級 姓名和學號 功能 輸出班級 姓名 學號 includeusing namespace std int main int main int number1,number2 cout 請輸入兩個數 cin number1 number2 int max...

哈工大C語言程式設計精髓 輸出逆序數

輸出逆序數 3分 題目內容 從鍵盤任意輸入乙個3位整數,程式設計計算並輸出它的逆序數 忽略整數前的正負號 例如,輸入 123,則忽略負號,由123分離出其百位1 十位2 個位3,然後計算3 100 2 10 1 321,並輸出321。1.從鍵盤輸入資料可以使用函式scanf 例如,scanf d x...

哈工大C語言程式設計精髓 字元型別判斷

題目內容 從鍵盤鍵入任意乙個字元,判斷該字元是英文本母 不區分大 小寫 數字字元還是其它字元。若鍵入字母,則螢幕顯示 it is an english character.若鍵入數字則螢幕顯示it is a digit character.若輸入其它字元,則螢幕顯示 it is other char...