C 基礎學習(語句語法)

2021-10-05 11:27:14 字數 2290 閱讀 1438

int a = 1, b = 2;

bool re1 = a > b && a++ > 1; // 一假具假

console.writeline(a); // 1

bool re2 = a < b || b++ < 1; //一真具真

console.writeline(b); // 2

// 當第乙個運算元為 假/真時; 將不會判斷第二個運算元

for(初始畫;迴圈條件;增減變數) //預定次數的迴圈

for(int i = 0;i <= 6;i += 2)	// 0 2 4 6

累加int sum = 0;

for(int = 1;i<=100;i++)

while(條件)

int count = 0; //計數

float height = 100.00f; //總高度

float length = 100; //

while (height/2 >= 0.01f)

距離:", count, height);

}console.writeline("最終落地的次數為:;\r\n總長度為:公尺", count,length);

do while語句

random random = new random();

int randomnume = random.next(1,101);

static void randomnume()

else if (numer < randomcount)

else

console.writeline("恭喜你猜對了:次數為",count);

} while (numer != randomcount);不滿足就繼續進入do

}

功能

※ 盡量乙個功能乙個方法,提高**的復用性

private static int add(int a,int b)

※ 定義方法

【訪問修飾符】【可選修飾符】 返回型別 方法名稱(引數列表)

※ 呼叫方法:

方法名稱(引數):

private static void fun1()

※ 返回值型別

int float ....

※ 實參與形參

int a=1,b=2;

fun(a,b1);

private static void fun(int a,int b1)<<--形參

一一對應;(型別,數量,順序)

※ 學會呼叫方法

· 看名字,描述

· 看引數(型別,名稱,描述)

· 看返回值

定義列印閱歷的方法

1:在控制太中實現年曆的方法

--呼叫12遍實現月曆

2:在控制台中實現月曆的方法

--顯示表頭console.wrteline (日\t一...)

--計算當月1日星期數,就輸入幾個空白 --console.write()

--當月的天數 週六換行

3:根據年月日,計算星期數

4:計算指定月份的天數

5:判斷瑞年的方法

--2月瑞年29 平年28 /4 ==0 && %100 != 0 || %400 == 0;

//顯示月曆

private static void printmonthcalender(int year,int month)

年月",year,month);

console.writeline("日\t一\t二\t三\t四\t五\t六");

//根據星期數顯示空白

int week = getweekbyday(year,month,1);

for(int i=0;i12) retuen 0;

if(month >= 1 && month <= 12)

}else

return 0;

}//判斷閏年

private static bool isleapyear(int year)

//(根據年月日獲得星期數)

private static int getweekbyday(int year,int month,int day)

//列印年曆

private static void printyearcalender()

}main()

Python學習 語句 語法

注釋,不支援多行注釋 連線,當一行的程式太長時,可以使用連線符 反斜槓 1 使用if elif 和 else 進行標記 小於兩個的選擇 if 條件 語句段1 else 語句段2 大於兩個的選擇 if 條件1 語句段1 elif 條件2 語句段2 else 語句段3 2 使用while進行迴圈 whi...

C 學習 語句

標準輸入輸出 cin 標準輸入 cout 標準輸出 cerr 不帶快取的標準錯誤輸出 clog 帶快取的標準錯誤輸出 檔案輸入輸出 ifstream 讀檔案 ofstream 寫檔案 fstream 讀寫檔案 字串輸入輸出 istringstream 字串輸入流 ostringstream 字串輸出...

Python基礎學習 語法基礎

一 識別符號與關鍵字 識別符號就是變數 常量 函式 屬性 類 模組和包等由程式設計師指定的名字。構成識別符號的字元均有一定的規範,python語言中識別符號的命名規則如下 區分大小寫,myname 與 myname 是兩個不同的識別符號 首字元可以是下劃線 或字母,但不能是數字 除首字元外其他字元,...